-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed errors and added all solutions up to the end of 04_css
- Loading branch information
Showing
41 changed files
with
731 additions
and
436 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,10 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<html lang="en"> | ||
<head> | ||
<title>Commodore 64</title> | ||
</head> | ||
|
||
<body> | ||
|
||
</body> | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 +1,3 @@ | ||
|
||
h1 { | ||
color: red; | ||
color: red; | ||
} |
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,5 +1,5 @@ | ||
body { | ||
font-family: Arial, Verdana, sans-serif; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
|
||
p { | ||
|
This file was deleted.
Oops, something went wrong.
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,3 +1,3 @@ | ||
body { | ||
font-family: Arial, Verdana, sans-serif; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
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,16 +1,15 @@ | ||
|
||
<!doctype html> | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Let's see CSS at Work</title> | ||
<meta name="description" content="The HTML5 Template"> | ||
<meta name="author" content="Joe Bloggs"> | ||
<link href="css/hello.css" type="text/css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<h1>Hello CSS!</h1> | ||
<p>Use this file to see how CSS can be used to change the appearance of a web page.</p> | ||
</body> | ||
<head> | ||
<title>Let's see CSS at Work</title> | ||
<meta charset="utf-8"> | ||
<meta name="description" content="The HTML5 Template"> | ||
<meta name="author" content="Joe Bloggs"> | ||
<link href="css/hello.css" type="text/css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<h1>Hello CSS!</h1> | ||
<p>Use this file to see how CSS can be used to change the appearance of a web page.</p> | ||
</body> | ||
</html> |
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
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,40 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<html lang="en"> | ||
<head> | ||
<title>Selecting elements</title> | ||
<link href="css/targetstyles.css" type="text/css" rel="stylesheet" /> | ||
<meta charset="utf-8" /> | ||
<meta charset="utf-8"> | ||
<link href="css/targetstyles.css" type="text/css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
|
||
<h1>Element selection demo</h1> | ||
|
||
<p>The sources of energy are:</p> | ||
<ol> | ||
<li>protein</li> | ||
<li>carbohydrates</li> | ||
<li>fat</li> | ||
</ol> | ||
|
||
<p>Sources of carbohydrates:</p> | ||
<ul> | ||
<li>Fruits and berries</li> | ||
<li>Wheat and pasta</li> | ||
<li>Sweet products | ||
<ul> | ||
<li>Candies<ul> | ||
<li>Jelly beans</li> | ||
<li>Irish toffee</li> | ||
<li>Fruit drops</li> | ||
|
||
</ul></li> | ||
|
||
<li>Candies | ||
<ul> | ||
<li>Jelly beans</li> | ||
<li>Irish toffee</li> | ||
<li>Fruit drops</li> | ||
</ul> | ||
</li> | ||
<li>Pastries</li> | ||
</ul> | ||
</li> | ||
|
||
</ul> | ||
|
||
|
||
</body> | ||
</html> |
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,10 +1,4 @@ | ||
|
||
body { | ||
font-family: Arial, Verdana, sans-serif; | ||
font-family: Arial, Helvetica, sans-serif; | ||
margin-left: 200px; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
} |
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,7 +1,5 @@ | ||
|
||
|
||
body { | ||
font-family: Arial, Verdana, sans-serif; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
|
||
nav ul { | ||
|
Oops, something went wrong.