header desktop e mobile

This commit is contained in:
Bianka Cristiny Ventura Martiniano 2022-10-10 22:28:54 -03:00
parent 89ee7124ac
commit 3f31bfbefc
18 changed files with 33 additions and 0 deletions

17
landingpage.html Normal file
View File

@ -0,0 +1,17 @@
<!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>LandingPage</title>
<link rel="stylesheet" href="./style/landingpage.css"/>
</head>
<body>
<header class="headerpage">
<a href="/">
<img class="logoheader" src="/src/assets/svg/Logo-M3Academy 1.png" alt="logo m3 academy" />
</a>
</header>
</body>
</html>

BIN
src/assets/svg/3pcs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
src/assets/svg/celular.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/assets/svg/dinheiro.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
src/assets/svg/facebook.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

BIN
src/assets/svg/laptop.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
src/assets/svg/loja.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 959 B

BIN
src/assets/svg/moeda.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 B

16
style/landingpage.css Normal file
View File

@ -0,0 +1,16 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.headerpage{
background: #000000;
display: flex;
justify-content: center;
padding: 28px 0;
}
.logoheader{
display: block;
}