diff --git a/README.md b/README.md index 49e6b70..769ad33 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,9 @@ -# challenge-landing-page +# Desafio Landing Page M3 Academy + +### 📋 Projeto desenvolvido utilizando HTML e CSS para o treinamento M3 Academy com a finalidade de obter uma landing page responsiva + +## ✒️ Desenvolvido por +* **Vitor Soares** - (https://github.com/vitorsoaresdev) diff --git a/assets/imagens/bottom-banner-desktop.png b/assets/imagens/bottom-banner-desktop.png new file mode 100644 index 0000000..87b48a2 Binary files /dev/null and b/assets/imagens/bottom-banner-desktop.png differ diff --git a/assets/imagens/bottom-banner-mobile.png b/assets/imagens/bottom-banner-mobile.png new file mode 100644 index 0000000..5399732 Binary files /dev/null and b/assets/imagens/bottom-banner-mobile.png differ diff --git a/assets/imagens/bottom-card-image1.png b/assets/imagens/bottom-card-image1.png new file mode 100644 index 0000000..90890b4 Binary files /dev/null and b/assets/imagens/bottom-card-image1.png differ diff --git a/assets/imagens/bottom-card-image2.png b/assets/imagens/bottom-card-image2.png new file mode 100644 index 0000000..d4eba1b Binary files /dev/null and b/assets/imagens/bottom-card-image2.png differ diff --git a/assets/imagens/bottom-card-image3.png b/assets/imagens/bottom-card-image3.png new file mode 100644 index 0000000..cf1aacc Binary files /dev/null and b/assets/imagens/bottom-card-image3.png differ diff --git a/assets/imagens/bottom-card-image4.png b/assets/imagens/bottom-card-image4.png new file mode 100644 index 0000000..4052717 Binary files /dev/null and b/assets/imagens/bottom-card-image4.png differ diff --git a/assets/imagens/facebook-icon.svg b/assets/imagens/facebook-icon.svg new file mode 100644 index 0000000..061ff85 --- /dev/null +++ b/assets/imagens/facebook-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/imagens/instagram-icon.svg b/assets/imagens/instagram-icon.svg new file mode 100644 index 0000000..9221bab --- /dev/null +++ b/assets/imagens/instagram-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/imagens/logo-m3.svg b/assets/imagens/logo-m3.svg new file mode 100644 index 0000000..698965a --- /dev/null +++ b/assets/imagens/logo-m3.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/imagens/main-banner-desktop.png b/assets/imagens/main-banner-desktop.png new file mode 100644 index 0000000..a2c9f47 Binary files /dev/null and b/assets/imagens/main-banner-desktop.png differ diff --git a/assets/imagens/main-banner-mobile.png b/assets/imagens/main-banner-mobile.png new file mode 100644 index 0000000..a0f7541 Binary files /dev/null and b/assets/imagens/main-banner-mobile.png differ diff --git a/assets/imagens/middle-banner-image1.png b/assets/imagens/middle-banner-image1.png new file mode 100644 index 0000000..3fd3851 Binary files /dev/null and b/assets/imagens/middle-banner-image1.png differ diff --git a/assets/imagens/middle-banner-image2.png b/assets/imagens/middle-banner-image2.png new file mode 100644 index 0000000..b8b9043 Binary files /dev/null and b/assets/imagens/middle-banner-image2.png differ diff --git a/assets/imagens/middle-banner-image3.png b/assets/imagens/middle-banner-image3.png new file mode 100644 index 0000000..babc07d Binary files /dev/null and b/assets/imagens/middle-banner-image3.png differ diff --git a/assets/imagens/top-card-image1.png b/assets/imagens/top-card-image1.png new file mode 100644 index 0000000..18457ea Binary files /dev/null and b/assets/imagens/top-card-image1.png differ diff --git a/assets/imagens/top-card-image2.png b/assets/imagens/top-card-image2.png new file mode 100644 index 0000000..2236a68 Binary files /dev/null and b/assets/imagens/top-card-image2.png differ diff --git a/assets/imagens/top-card-image3.png b/assets/imagens/top-card-image3.png new file mode 100644 index 0000000..2f1118a Binary files /dev/null and b/assets/imagens/top-card-image3.png differ diff --git a/assets/imagens/top-infocard-image.png b/assets/imagens/top-infocard-image.png new file mode 100644 index 0000000..41cf659 Binary files /dev/null and b/assets/imagens/top-infocard-image.png differ diff --git a/assets/imagens/youtube-icon.svg b/assets/imagens/youtube-icon.svg new file mode 100644 index 0000000..c2ef882 --- /dev/null +++ b/assets/imagens/youtube-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/styles/main.css b/assets/styles/main.css new file mode 100644 index 0000000..c9d5824 --- /dev/null +++ b/assets/styles/main.css @@ -0,0 +1,24 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap'); + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: 'Inter', sans-serif; + color: #000000; +} + +/*Adiciona header desktop e mobile*/ +.page-header { + display: flex; + justify-content: center; + padding: 29px; + background: #000000; +} + +.header-logo { + display: block; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..f0871e4 --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ + + + + + + + + + Desafio Landing Page + + + + + + + + + \ No newline at end of file