feature/footer #1
12
assets/CSS/main.css
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap%27');
|
||||||
|
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: "Inter", sans-serif;
|
||||||
|
color: #000000;
|
||||||
|
}
|
BIN
assets/images/Banner Infocard Topo.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
assets/images/Banner-principal-mobile.png
Normal file
After Width: | Height: | Size: 332 KiB |
BIN
assets/images/Banner-principal.jpg
Normal file
After Width: | Height: | Size: 828 KiB |
BIN
assets/images/Group.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
9
assets/images/Logo-M3Academy 1.svg
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
assets/images/Rectangle 15.png
Normal file
After Width: | Height: | Size: 358 KiB |
BIN
assets/images/bottom-infocard-image-mobile.png
Normal file
After Width: | Height: | Size: 246 KiB |
BIN
assets/images/coin 1.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
assets/images/facebook-logo.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
assets/images/instagram-icon-m3.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
assets/images/laptop 1.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/images/middle-image1.png
Normal file
After Width: | Height: | Size: 232 KiB |
BIN
assets/images/middle-image2.png
Normal file
After Width: | Height: | Size: 212 KiB |
BIN
assets/images/middle-image3.png
Normal file
After Width: | Height: | Size: 318 KiB |
BIN
assets/images/money (1) 2.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/images/shop 1.png
Normal file
After Width: | Height: | Size: 965 B |
BIN
assets/images/shopping-bag (1) 1.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
assets/images/youtube-logo.png
Normal file
After Width: | Height: | Size: 345 B |
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">
|
||||||
|
<title>Desafio 1: Landing Page</title>
|
||||||
|
<link rel="stylesheet" href="./assets/CSS/main.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="page-header">
|
||||||
|
<a href="/">
|
||||||
|
<img class="header-logo"
|
||||||
|
src="./assets/images/Logo-M3Academy 1.svg"
|
||||||
|
alt="Logo M3"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</header>
|
||||||
|
</body>
|
||||||
|
</html>
|