-
-
Notifications
You must be signed in to change notification settings - Fork 619
NW6 | Orlando_Morales | HTML-CSS | Module_Project | Week1 #636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 23 commits
9e902a4
b875518
10f388d
13e9266
2bb34de
54ccead
57034ce
cc2d26c
3c036ea
afef89c
cb100bf
bd5ed69
93f2d5b
3173bfa
a233c81
f7c8d62
221dda6
5975b31
6ad8fbb
f25f71a
f56b496
5bcdb9c
b715162
fa436d7
5f08b28
bb95a97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,14 +6,98 @@ | |
| <title>Karma</title> | ||
| <link href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'> | ||
| <link rel="stylesheet" href="css/normalize.css"> | ||
| <link rel="stylesheet" href="css/style.css"> | ||
| <link rel="stylesheet" href="style.css"> | ||
| <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> | ||
| </head> | ||
| <body> | ||
|
|
||
| <!-- Add your HTML markup here --> | ||
| <header class="header"> | ||
|
|
||
| <a href="#"> | ||
| <img src="favicon.ico" | ||
| alt="logo favorite icon" | ||
| class="header_logo"> | ||
| </a> | ||
|
|
||
| <nav> | ||
| <ul class="navigation_list"> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link1" href="/index.html">Meet Karma</a> | ||
| </li> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link" href="#">How It Works</a> | ||
| </li> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link" href="/store.html">Store</a> | ||
| </li> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link" href="#">Blog</a> | ||
| </li> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link" href="#">Help</a> | ||
| </li> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link" href="#">Login</a> | ||
| </li> | ||
| </ul> | ||
|
|
||
| </nav> | ||
| </header> | ||
| <!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc --> | ||
| <!-- All the images you need are in the 'img' folder --> | ||
| <main > | ||
|
|
||
| <section class="content1"> | ||
| <div class="Introducing"> | ||
| <h1 class="h1Introducing">Introducing Karma</h1> | ||
| <p class="pIntroducing">Bring WiFi with you, everywhere you go.</p> | ||
| <button class="btnLearn">Learn More</button> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section class="Logos"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This section needs to be adjusted in such a way that The Image and the text box exist together in a single
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did the changes, put the images and the texts in the same div |
||
| <h2 class="h2Logos">Everyone needs a little Karma.</h2> | ||
| <div class="iconLogos"> | ||
| <img src="/img/icon-devices.svg" alt="device" class="icon"> | ||
| <img src="/img/icon-coffee.svg" alt="coffee" class="icon"> | ||
| <img src="/img/icon-refill.svg" alt="refill" class="icon"> | ||
| </div> | ||
| <div class="iconLogos"> | ||
| <h4 class="iconText">Internet for all devices</h4> | ||
| <h4 class="iconText">Boost your productivity</h4> | ||
| <h4 class="iconText">Pay as You go</h4> | ||
| </div> | ||
| </section> | ||
|
|
||
| <section class="content2"> | ||
| <div > | ||
| <img | ||
| src="/level-2/homepage-feature.png" | ||
| alt="girl drinking coffee" | ||
| class="imgDrinking"> | ||
|
|
||
| </div> | ||
| <div class="content3"> | ||
| <h3 class="h3Content3"> | ||
| <span class="quotation">"</span>Wherever I am, I just don't worry about my connection anymore!<span class="quotation">"</span> | ||
| </h3> | ||
| <button class="btnGetKarma">Get Karma Today</button> | ||
| </div> | ||
| </section> | ||
|
|
||
| </main> | ||
| </body> | ||
| <footer> | ||
| <div class="footer"> | ||
| <h4>Join us on</h4> | ||
| </div> | ||
| <div class="logosFooter"> | ||
| <img src="/img/twitter-icon.svg" alt="twitter" class="iconFooter"> | ||
| <img src="/img/facebook-icon.svg" alt="facebook" class="iconFooter"> | ||
| <img src="/img/instagram-icon.svg" alt="instagram" class="iconFooter"> | ||
| </div> | ||
| <div class="textFooter"> | ||
| <h5 class="textFooter"><span class="circle">C</span> Karma Mobility, Inc.</h5> | ||
| </div> | ||
| </footer> | ||
| </html> | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setting a max width as

1200pxlimit your design to fit screen size less or equal to1200px. This is how it renders on larger screen, which isnt what you are trying to achieve. Please look into this, remove the max-width anywhere you have it and work on the structuring againThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did the change