feature/header #1

Merged
luizfelipe9627 merged 2 commits from feature/header into main 2022-10-14 17:01:39 +00:00
2 changed files with 25 additions and 1 deletions

View File

@ -13,6 +13,10 @@
</head> </head>
<body> <body>
<header>
<a href="/">
<img src="./src/assets/svg/logo.svg" alt="Logo M3">
</a>
</header>
</body> </body>
</html> </html>

View File

@ -0,0 +1,20 @@
@import url('../font/fonte.css');
/* GLOBAL */
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* HEADER */
header {
width: 100%;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
background-color: #000;
}