-
-
Notifications
You must be signed in to change notification settings - Fork 616
NW5-Leeds-Meron Gebremichael-HTML/CSS-week 1 #447
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
Open
Meronggk
wants to merge
10
commits into
CodeYourFuture:master
Choose a base branch
from
Meronggk:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
2bee808
add - reorder elements
Meronggk 4f01174
add height
Meronggk bc0d7f2
add height and width
Meronggk 94067b0
add align
Meronggk d10cede
add inline style
Meronggk 6ebce08
add store
Meronggk d136053
adding form
Meronggk 621475e
fixing the grid
Meronggk f1f16fb
adding checck box color
Meronggk b54d0a3
changed checked box color
Meronggk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| // Use IntelliSense to learn about possible attributes. | ||
| // Hover to view descriptions of existing attributes. | ||
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "type": "pwa-chrome", | ||
| "request": "launch", | ||
| "name": "Launch Chrome against localhost", | ||
| "url": "http://localhost:8080", | ||
| "webRoot": "${workspaceFolder}" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| { | ||
| "liveServer.settings.port": 5502 | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,99 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <header></header> | ||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
| <title>Karma</title> | ||
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous"> | ||
| <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="shortcut icon" type="image/x-icon" href="favicon.ico"> | ||
| </head> | ||
| <body> | ||
| <nav class="topnav"> | ||
| <div class="content"> | ||
| <ul class="link"> | ||
| <li class="active"><a href="index.html">Meet Karma</a></li> | ||
| <li>How it Works</li> | ||
| <li><a href="store.html">Store</a></li> | ||
| <li>Blog</li> | ||
| <li>Help</li> | ||
| <li>Log in</li> | ||
| </ul> | ||
| <img class="logo" src="img/karma-logo.svg" alt="karma-logo" width="26"/> | ||
| </div> | ||
| </nav> | ||
| <section class="introduction"> | ||
| <div class="intro"> | ||
|
|
||
| <h1>Introducing Karma</h1> | ||
| <h3>Bring your wifi with you, everywhere you go</h3> | ||
|
|
||
| <!-- 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 --> | ||
| <div class="button"> | ||
| <button class="halfbutton">Learn More</button> | ||
| </div> | ||
| </div> | ||
| </section> | ||
| <section class="device"> | ||
| <div class="karma"> | ||
|
|
||
| <h2>Everyone needs a little Karma</h2> | ||
| </div> | ||
|
|
||
| <div class="table"> | ||
| <div class="middlenav"> | ||
| <img class="images" src="/img/icon-devices.svg" alt="icon-devices"> | ||
| <p>Internet for all</p> | ||
| </div> | ||
| <div class="coffee"> | ||
| <img class="images" src="/img/icon-coffee.svg" alt="icon-coffee"> | ||
| <p>Boost your productivity</p> | ||
| </div> | ||
| <div class="admit"> | ||
| <img class="images" src="/img/icon-refill.svg" alt="icon-refill"> | ||
| <p>Pay as you go</p> | ||
| </div> | ||
| </div> | ||
|
|
||
| </section> | ||
|
|
||
| <main> | ||
| <section> | ||
|
|
||
| </body> | ||
|
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 think it extra tage |
||
| </html> | ||
|
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. extra tag |
||
| <div class="firstGrid"> | ||
|
|
||
| <div class="homepage"> | ||
| <img src="img/homepage-feature.png" alt="Home"> | ||
| </div> | ||
|
|
||
| <div class="qouteall"> | ||
| <p> | ||
| <i><span class="quote">"</span>Wherever I am, I just don’t </br>worry about my connection </br> anymore!<span class="qoute2">"</span></i> | ||
| </p> | ||
| <button class="btn">Get Karma today</button> | ||
| </div> | ||
|
|
||
| </div> | ||
| </section> | ||
| </main> | ||
|
|
||
| <footer class="inc storefooter"> | ||
|
|
||
| <section class="never"> | ||
| <div class="socials"> | ||
| <p>Join us on</p> | ||
|
|
||
|
|
||
| <img src="/img/twitter-icon.svg" alt="twitter icon" width="30" height="30"> | ||
| <img src="/img/facebook-icon.svg" alt="facebook icon" width="30" height="30"> | ||
| <img src="/img/instagram-icon.svg" alt="instagram icon" width="30" height="30"> | ||
|
|
||
| </div> | ||
| </section> | ||
|
|
||
| <p>@Karma Mobility,Inc</p> | ||
| </footer> | ||
| </body> | ||
| </html> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
could you remove this because it is useless