-
-
Notifications
You must be signed in to change notification settings - Fork 617
ZA2 Matthias Matanda-Karma-week2 #358
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 all commits
a8a2030
8b9efdc
1dd1414
c3966ab
3125661
7062a35
915c224
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 |
|---|---|---|
|
|
@@ -14,6 +14,64 @@ | |
| <!-- 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 --> | ||
| <!------------------------------------header------------------------------> | ||
| <header> | ||
| <div class="logo"> | ||
| <img src="img/karma-logo.svg" id="left-logo" alt="logo photo"> | ||
| </div> | ||
| <div class="list"> | ||
| <ul> | ||
| <li>Meet Karma</li> | ||
| <li>How it works</li> | ||
| <li><a href="#">store</a></li> | ||
| <li><a href="#">blog</a></li> | ||
| <li><a href="#">help</a></li> | ||
| <li><a href="#">login</a></li> | ||
| </ul> | ||
| </div> | ||
| </header> | ||
| <!-----------------------------------main area------------------------------> | ||
| <main> | ||
| <div class="karma"> | ||
| <img src="img/first-background.jpg" alt="background photo"> | ||
| <div class="details"> | ||
| <h1>introducing karma</h1> | ||
| <p>Bring WIFI with you, everywhere you go.</p> | ||
| <button>learn more</button> | ||
| </div> | ||
| </div> | ||
| </main> | ||
| <!------------------------------------section--------------------------------> | ||
|
|
||
|
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. Nicely done Mathias, code is easy to navigate and commenting looks good.
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. Yeah but I preferred to keep it in a section than setting it in the main area, thanks for seeing that |
||
| <section> | ||
| <article class="karma1"> | ||
| <h1>Everyone needs a little Karma.</h1> | ||
| <div class="karma-img"> | ||
| <div> | ||
| <img src="img/icon-devices.svg" alt=" device photo"> | ||
| <p>Internet for all devices</p> | ||
| </div> | ||
| <div> | ||
| <img src="img/icon-coffee.svg" alt="coffee photo"> | ||
| <p>Boost your productivity</p> | ||
| </div> | ||
| <div> | ||
| <img src="img/icon-refill.svg" alt="refill photo"> | ||
| <p>Pay as You Go</p> | ||
| </div> | ||
| </div> | ||
|
|
||
| </article> | ||
| </section> | ||
| <!----------------------------------------footer------------------------------------------> | ||
| <footer> | ||
| <h4>Join us on</h4> | ||
| <div class="links"> | ||
| <a href="#"><img src="img/twitter-icon.svg" alt="twitter photo"></a> | ||
| <a href="#"><img src="img/facebook-icon.svg" alt="facebook photo"></a> | ||
| <a href="#"><img src="img/instagram-icon.svg" alt="instagram photo"></a> | ||
| </div> | ||
| <h5>© karma mobility.inc</h5> | ||
| </footer> | ||
|
Mathias02 marked this conversation as resolved.
|
||
| </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.
line 48 & 57 is a duplicate selector.