Merge pull request 'feat(html-css): adiciona arquivos html, css e configurações iniciais' (#1) from feature/create-html-css into main

Reviewed-on: #1
This commit is contained in:
Thiago Bronisio Damascena 2022-10-08 17:55:57 +00:00
commit da320c5376
2 changed files with 23 additions and 0 deletions

18
index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<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>Landing Page M3 Academy</title>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>

5
style.css Normal file
View File

@ -0,0 +1,5 @@
* {
margin: 0px;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}