Feat(Css): Seta configuracoes gerais do Css e fonte da pagina

This commit is contained in:
Rhayllon Daudt 2022-10-10 12:38:46 -03:00
parent 1fbcc72c70
commit ab7f9fc517
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,10 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
color: #000000;
}

View File

@ -4,7 +4,10 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./assets/styles/main.css" />
<title>Landing Page</title>
</head>
<body>