feat: criado arquivos e estrutura html
This commit is contained in:
parent
89ee7124ac
commit
16a9f2a84c
BIN
assets/image/Logo-M3Academy 1.png
Normal file
BIN
assets/image/Logo-M3Academy 1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
16
assets/styles/style.css
Normal file
16
assets/styles/style.css
Normal file
@ -0,0 +1,16 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 29px 0px;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.header-logo {
|
||||
display: block;
|
||||
}
|
20
index.html
Normal file
20
index.html
Normal file
@ -0,0 +1,20 @@
|
||||
<!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/style.css">
|
||||
|
||||
<title>Landing Page</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header class="header">
|
||||
<a href="/">
|
||||
<img class="header-logo" src="./assets/image/Logo-M3Academy 1.png" alt="Logo M3" />
|
||||
</a>
|
||||
</header>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user