This repository was archived by the owner on Oct 26, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 43
Daniel carter week 2 website #81
Open
carterd888
wants to merge
13
commits into
CodeYourFuture:master
Choose a base branch
from
carterd888:daniel-carter-week-2-website
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 9 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f43624e
added nav bar html + css
carterd888 9de90b4
added intro section html + css
carterd888 d1459c6
minor changes
carterd888 ac25625
added html and css for everyone needs karma section
carterd888 1ff0eb8
added footer html + css
carterd888 1f519e7
structured CSS page with comments
carterd888 306a370
made some changes to CSS to demonstrate coding for blog
carterd888 de2d905
added test comment
carterd888 2123753
added testing comment
carterd888 fcc59e3
updated links
carterd888 cc4598a
changed naming convention from camel case to hyphens
carterd888 0ce26fe
added divs around everyone needs karma section to try and improve it
carterd888 87947c1
updated nav bar and logo
carterd888 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,3 @@ | ||
| { | ||
| "liveServer.settings.port": 5501 | ||
| } |
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
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,5 +1,6 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
|
@@ -8,14 +9,62 @@ | |
| <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | ||
| <link rel="stylesheet" href="css/normalize.css"> | ||
| <!-- Add a link to your CSS file here (use the line above to guide you) --> | ||
| <link rel="stylesheet" href="css/style.css"> | ||
| <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> | ||
| <link rel="stylesheet" href="/2-website/css/style.css"> | ||
|
||
| <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> | ||
| </head> | ||
| <body> | ||
|
|
||
| <body> | ||
| <!-- header>nav>ul>(li>a)*6 --> | ||
| <header> | ||
| <nav> | ||
| <div class="navigation-container"> | ||
| <img id="karma-logo" src="img/karma-logo.svg" alt="karma logo"> | ||
|
||
| <ul> | ||
| <li><a href="#"></a>Meet Karma</li> | ||
| <li><a href="#"></a>How it Works</li> | ||
| <li><a href="#"></a>Store</li> | ||
| <li><a href="#"></a>Blog</li> | ||
| <li><a href="#"></a>Help</li> | ||
| <li><a href="#"></a>Login</li> | ||
| </ul> | ||
| </div> | ||
| </nav> | ||
| </header> | ||
| <section id="introducingKarma"> | ||
| <h1>Introducing Karma</h1> | ||
| <h2>Bring WiFi with you, everywhere you go.</h2> | ||
| <button id="learnMore">Learn More</button> | ||
| </section> | ||
| <section id="everyoneNeedsKarma"> | ||
| <h1>Everyone needs a little Karma.</h1> | ||
| <img id="device" src="img/icon-devices.svg" alt="device logo"> | ||
| <img id="coffee" src="img/icon-coffee.svg" alt="coffee logo"> | ||
| <img id="refill" src="img/icon-refill.svg" alt="device logo"> | ||
|
||
| <h2>Internet for all devices</h2> | ||
| <h2>Boost your productivity</h2> | ||
| <h2>Pay as you go</h2> | ||
| </section> | ||
| <footer> | ||
| <hr> | ||
| <h2>Join us on</h2> | ||
| <div id="iconContainer"> | ||
| <div class="iconBorder"> | ||
| <i class="fa fa-twitter" style="font-size:20px;color:lightblue;" aria-hidden="true"></i> | ||
| </div> | ||
| <div class="iconBorder"> | ||
| <i class="fa fa-facebook" style="font-size:20px;color:blue;" aria-hidden="true"></i> | ||
| </div> | ||
| <div class="iconBorder"> | ||
| <i class="fa fa-instagram" style="font-size:20px;color:darkblue;" aria-hidden="true"></i> | ||
| </div> | ||
| </div> | ||
| <h2> © Karma Mobility, Inc.</h2> | ||
| </footer> | ||
| <!-- 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 --> | ||
|
|
||
| </body> | ||
| </html> | ||
| <!-- Test Comment--> | ||
|
|
||
| </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.
Update the path to
"../img/first-background.jpg"