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