-
-
Notifications
You must be signed in to change notification settings - Fork 621
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
NW6/Sabella-Fisseha/ HTML-CSS-Module-project-karma/week 2 #641
Open
Sabella-8
wants to merge
3
commits into
CodeYourFuture:master
Choose a base branch
from
Sabella-8:sab
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
3 commits
Select commit
Hold shift + click to select a range
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 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": 5501 | ||
} |
Empty file.
Empty file.
0
img/first-background.jpg → css/first-background.jpg
100755 → 100644
File renamed without changes
This file contains 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
Empty file.
File renamed without changes
This file contains 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,84 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<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://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> | ||
|
||
<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> | ||
<!-- 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> | ||
<nav class="nav"> | ||
<nav > | ||
<img src="favicon.ico" > | ||
</nav> | ||
<nav class="navigation"> | ||
<a href="meet.html">Meet Karma</a> | ||
<a href="/How.html">How it Works</a> | ||
<a href="store.html">Store</a> | ||
<a href="blog.html">Blog</a> | ||
<a href="help.html">Help</a> | ||
<a href="log.html">Log in</a> | ||
</nav> | ||
</nav> | ||
</header> | ||
<main> | ||
<section class="first_section"> | ||
<h1>Introducing Karma</h1> | ||
<p>Bring WiFi with you, everywhere you go.</p> | ||
<button class="fir_b">Learn More</button> | ||
</section> | ||
<section> | ||
<h1 class="sec_h1">Everyone needs a little karma</h1> | ||
<section class="second_section"> | ||
<section class="second_second" id="seco1"> | ||
<img src="img/icon-devices.svg"> | ||
<p>Internet for all devices</p> | ||
</section> | ||
<section class="second_second"> | ||
<img src="img/icon-coffee.svg"> | ||
<p>Boost your productivity</p> | ||
</section> | ||
<section class="second_second"> | ||
<img src="img/icon-refill.svg"> | ||
<p>Pay as you Go</p> | ||
</section> | ||
</section> | ||
</section> | ||
<section class="pic_section"> | ||
<img width="500px" height="350" src="homepage-feature.png" /> | ||
|
||
<p class="pic_par"> | ||
<span class="quo">"</span>Wherever I am I just don't worry about my | ||
connection <br />anymore!<span class="quo">"</span> | ||
<br /> | ||
|
||
</body> | ||
<button class="button_karma">Get Karma today</button> | ||
</p> | ||
</section> | ||
</main> | ||
<footer class="last_section"> | ||
<hr /> | ||
<p>Join us on</p> | ||
<section class="footimg"> | ||
<img src="img/twitter-icon.svg"> | ||
<img src="img/facebook-icon.svg"> | ||
<img src="img/instagram-icon.svg"> | ||
</section> | ||
</section> | ||
</footer> | ||
</body> | ||
</html> |
Empty file.
Empty file.
File renamed without changes
This file contains 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,126 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<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://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> | ||
<!-- 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> | ||
<nav class="nav"> | ||
<nav> | ||
<img src="favicon.ico" /> | ||
</nav> | ||
<nav class="navigation"> | ||
<a href="meet.html">Meet Karma</a> | ||
<a href="/How.html">How it Works</a> | ||
<a href="store.html">Store</a> | ||
<a href="blog.html">Blog</a> | ||
<a href="help.html">Help</a> | ||
<a href="log.html">Log in</a> | ||
</nav> | ||
</nav> | ||
</header> | ||
<main> | ||
<section class="all_section"> | ||
<section> | ||
<h1 class="stor_h"> Order your Karma wifi<br> device today!</h1> | ||
<section class="inp_all"> | ||
|
||
<section> | ||
<form class="forname"> | ||
<section> | ||
<label type="text" for="fname">First name * </label><br> | ||
<input id="fname"><br></section><section> | ||
<label type="text" for="lname">Last name * </label><br> | ||
<input id="lname"> | ||
</section> | ||
</form> | ||
</form> | ||
</section> | ||
|
||
<section> | ||
<form> | ||
<label type="text" for="address">Address * </label><br> | ||
<input id="address"><br> | ||
<label type="text" for="address2">Address 2 </label><br> | ||
<input id="address2"> | ||
</form> | ||
</section> | ||
|
||
<section> | ||
<form class="forname"> | ||
<section> | ||
<label type="text" for="city" >city * </label><br> | ||
<select id="city"> | ||
<option value="Select your city...">Select your city...</option> | ||
<option value="Afghanistan">Afghanistan</option> | ||
<option value="Albania">Albania</option> | ||
<option value="Algeria">Algeria</option> | ||
<option value="Eritrea">Eritrea</option> | ||
<option value="United Kingdom">United Kingdom</option> | ||
</select> | ||
</section> | ||
<section class="post"> | ||
<label type="text" for="postcode">postcode * </label><br> | ||
<input id="postcode"> | ||
</section> | ||
</form> | ||
</section> | ||
|
||
<section> | ||
<p> select a colour</p> | ||
<form class="rad"> | ||
<input type="radio" id="karmaorange" checked="checked" > | ||
|
||
<label for="karmaorange">Karma orange</label><br> | ||
<input type="radio" id="spacegrey" > | ||
<label for="spacegrey">Space Grey</label><br> | ||
</form> | ||
</section> | ||
|
||
<section> | ||
<form> | ||
<input type="checkbox" id="policy" checked="checked"> | ||
|
||
<label for="policy"> By placing your order you agree to Karma's <span class="quo">Terms and conditions</span>*</span></label><br> | ||
</section> | ||
|
||
<button class="button_karma"> Place my order</button> | ||
</section> | ||
|
||
</section> | ||
|
||
|
||
<section> <img height="700px" width="150%" src="store-image_by-andrew-neel-unsplash.jpg"></section> | ||
|
||
</section> | ||
|
||
</main> | ||
<footer class="last_section"> | ||
<hr /> | ||
<p>Join us on</p> | ||
<section class="footimg"> | ||
<img src="img/twitter-icon.svg"> | ||
<img src="img/facebook-icon.svg"> | ||
<img src="img/instagram-icon.svg"> | ||
</section> | ||
</section> | ||
</footer> | ||
</body> | ||
|
||
</html> |
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.
shouldn't be checked already.