diff --git a/assets/img/Logo-M3Academy 1.svg b/assets/img/Logo-M3Academy 1.svg new file mode 100644 index 0000000..698965a --- /dev/null +++ b/assets/img/Logo-M3Academy 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/img/image_principal.png b/assets/img/image_principal.png new file mode 100644 index 0000000..cab0a60 Binary files /dev/null and b/assets/img/image_principal.png differ diff --git a/assets/img/mobile_image_primary.png b/assets/img/mobile_image_primary.png new file mode 100644 index 0000000..5118021 Binary files /dev/null and b/assets/img/mobile_image_primary.png differ diff --git a/index.html b/index.html index 3a76008..54b0ac9 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,22 @@ +
+ + + LogoM3Academy + + +
+ +
+ + banner primário + + + + +
diff --git a/style.css b/style.css index e69de29..62cc34a 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,37 @@ +* { + padding: 0; + margin: 0; + box-sizing: border-box; +} + +.header_landing { + background-color: #000; + display: flex; + justify-content: center; +} + +.logo_m3 { + margin: 28px 0; +} + +.primary_banner { + width: 100%; + +} + +@media screen and (max-width: 413px) { + .primary_banner { + display: none; + } + + .banner_mobile { + width: 100%; + max-width: 414px; + } +} + +@media screen and (min-width:414px) { + .banner_mobile { + display: none; + } +} \ No newline at end of file