-
-
Notifications
You must be signed in to change notification settings - Fork 620
NW6 | Hadika Malik | HTML-CSS | Module-Project | Week 1 + Week 2 #639
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 5 commits
90603d5
a829614
4764489
94623e8
d22b047
5fd3daf
8d52894
316c426
229b06f
83e2062
59f1491
daa5cd5
e726eb2
4a87ccf
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 |
|---|---|---|
|
|
@@ -10,10 +10,99 @@ | |
| <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> | ||
| </head> | ||
| <body> | ||
| <header class="header"> | ||
| <a href="#"> | ||
| <img | ||
| src="img/karma-logo.svg" | ||
| alt="karma logo" | ||
| class="header_logo" | ||
| /> | ||
| </a> | ||
| <nav> | ||
| <ul class="navigation_list"> | ||
| <li class="navigation_item"> | ||
| <a class="navigation_link" href="#">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</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> | ||
|
|
||
| <!-- Add your HTML markup here --> | ||
| <!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc --> | ||
| <!-- All the images you need are in the 'img' folder --> | ||
| <main class="content"> | ||
| <section class="main"> | ||
| <h1>Introducing Karma</h1> | ||
| <p>Bring WiFi with you, everywhere you go.</p> | ||
| <button class="orange-button">Learn More</button> | ||
|
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 class |
||
| </section> | ||
| <section class="points"> | ||
| <h2 class="second_heading">Everyone needs a little Karma.</h2> | ||
|
|
||
| <section class="container"> | ||
| <article class="articles"> | ||
| <img | ||
| class="images" | ||
| src="img/icon-devices.svg" | ||
| alt="devices image" | ||
| /> | ||
| <p class="article_title">Internet for all devices</p> | ||
| </article> | ||
|
|
||
| <article class="articles"> | ||
| <img | ||
| class="images" | ||
| src="img/icon-coffee.svg" | ||
| alt="devices image" | ||
| /> | ||
| <p class="article_title">Boost your productivity</p> | ||
| </article> | ||
|
|
||
| <article class="articles"> | ||
| <img | ||
| class="images" | ||
| src="img/icon-refill.svg" | ||
| alt="devices image" | ||
| /> | ||
| <p class="article_title">Pay as You Go</p> | ||
| </article> | ||
| </section> | ||
|
|
||
| </section> | ||
| </main> | ||
| <hr> | ||
|
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. the color for this element is a bit different |
||
| <footer class="footer"> | ||
| <section class="footer_content"> | ||
| <p>Join us on</p> | ||
| <img | ||
| class="footer_img" | ||
| src="img/twitter-icon.svg" | ||
| alt="twitter-icon" | ||
| /> | ||
| <img | ||
| class="footer_img" | ||
| src="img/facebook-icon.svg" | ||
| alt="facebook-icon" | ||
| /> | ||
| <img | ||
| class="footer_img" | ||
| src="img/instagram-icon.svg" | ||
| alt="instagram-icon" | ||
| /> | ||
| <p class="copyright">@Karma Mobility Inc.</p> | ||
| </section> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
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.
Hi, as best practice, its better to remove code sections you are not using, instead of commenting it out