forked from M3-Academy/practice-time-landing-page
cria o header desktop e mobile
This commit is contained in:
parent
08edfea66b
commit
e466271c6b
BIN
acesso/.DS_Store
vendored
Normal file
BIN
acesso/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
acesso/image/.DS_Store
vendored
Normal file
BIN
acesso/image/.DS_Store
vendored
Normal file
Binary file not shown.
9
acesso/image/LogoM3.svg
Normal file
9
acesso/image/LogoM3.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 37 KiB |
16
acesso/styles/main.css
Normal file
16
acesso/styles/main.css
Normal file
@ -0,0 +1,16 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background: #000000;
|
||||
padding: 28px;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
display: block;
|
||||
}
|
22
index.html
Normal file
22
index.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!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="./acesso/styles/main.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="page-header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="./acesso/image/LogoM3.svg" alt="LogoM3">
|
||||
</a>
|
||||
</header>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user