Skip to content

Commit 17ab643

Browse files
Charlene TranCharlene Tran
Charlene Tran
authored and
Charlene Tran
committed
created duplicate CT edit files
1 parent d1a5a75 commit 17ab643

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

css/exercises-CT/index.html

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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="styles.css" rel="stylesheet" type="text/css" />
8+
<style>
9+
body {
10+
background-color: yellow;
11+
}
12+
13+
h1 {
14+
font-size: 36px;
15+
/* text-align: center; */
16+
}
17+
18+
h2 {
19+
/* text-align: center; */
20+
}
21+
22+
ol {
23+
/* text-align: center; */
24+
}
25+
26+
p {
27+
color: green;
28+
/* text-align: center; */
29+
}
30+
31+
.center {
32+
text-align: center;
33+
}
34+
35+
#cool-text {
36+
color: blue;
37+
}
38+
39+
#list-color {
40+
color: deeppink;
41+
}
42+
43+
</style>
44+
</head>
45+
<body>
46+
<script src="script.js"></script>
47+
<!-- You do not need to do anything with script.js right now! Later, we will learn how to add JavaScript to websites! --->
48+
<h1 class="center"> My Very Cool Web Page </h1>
49+
<h2 class="center">Why this Website is Very Cool</h2>
50+
<ol id="list-color">
51+
<li>I made it!</li>
52+
<li>This website is colorful!</li>
53+
</ol>
54+
<h2 id="cool-text" class="center">Why I love Web Development</h2>
55+
<p>Web Development is a very cool skill that I love learning!</p>
56+
<p>I love making websites because all I have to do is reload the page to see the changes I have made!</p>
57+
</body>
58+
</html>

css/exercises-CT/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/exercises-CT/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)