Cria o header desktop e mobile
This commit is contained in:
parent
08edfea66b
commit
66685095cf
9
assets/images/m3-logo.svg
Normal file
9
assets/images/m3-logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 37 KiB |
17
assets/styles/main.css
Normal file
17
assets/styles/main.css
Normal file
@ -0,0 +1,17 @@
|
||||
* {
|
||||
margin:0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page-header{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: #000000;
|
||||
padding: 28px 0;
|
||||
}
|
||||
|
||||
.header-logo{
|
||||
display: block;
|
||||
}
|
||||
|
19
index.html
Normal file
19
index.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!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">
|
||||
<link rel="stylesheet" href="/assets/styles/main.css">
|
||||
|
||||
<title>M3 Landing Page</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="/assets/images/m3-logo.svg" alt="Logo M3">
|
||||
</a>
|
||||
</header>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user