Skip to content

Commit 21b9f02

Browse files
committed
added css directory for exercises
1 parent b0535f1 commit 21b9f02

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

css/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width">
6+
<title>CSS Exercises</title>
7+
<link href="style.css" rel="stylesheet" type="text/css" />
8+
</head>
9+
<body>
10+
<script src="script.js"></script>
11+
<!-- You do not need to do anything with script.js right now! Later, we will learn how to add JavaScript to websites! --->
12+
<h1>My Very Cool Web Page</h1>
13+
<h2>Why this Website is Very Cool</h2>
14+
<ol>
15+
<li>I made it!</li>
16+
<li>This website is colorful!</li>
17+
</ol>
18+
<h2 id="cool-text">Why I love Web Development</h2>
19+
<p>Web Development is a very cool skill that I love learning!</p>
20+
<p>I love making websites because all I have to do is reload the page to see the changes I have made!</p>
21+
</body>
22+
</html>

css/script.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// You do not need to do anything with script.js right now! Later, we will learn how to add JavaScript to websites!

css/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* Start adding your styling below! */

0 commit comments

Comments
 (0)