Merge pull request 'feature/header' (#1) from feature/header into main

Reviewed-on: luizfelipe9627/practice-time-landing-page-luiz-felipe#1
This commit is contained in:
Luiz Felipe Silva 2022-10-14 17:01:39 +00:00
commit cae9b62939
2 changed files with 25 additions and 1 deletions

View File

@ -13,6 +13,10 @@
</head>
<body>
<header>
<a href="/">
<img src="./src/assets/svg/logo.svg" alt="Logo M3">
</a>
</header>
</body>
</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;
}