Skip to content

Commit 58add56

Browse files
assignmetn complete
1 parent c541dac commit 58add56

File tree

4 files changed

+21
-3505
lines changed

4 files changed

+21
-3505
lines changed

css/exercises/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
<body>
1010
<script src="script.js"></script>
1111
<!-- 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>
12+
<h1 class="center">My Very Cool Web Page</h1>
13+
<h2 class="center">Why this Website is Very Cool</h2>
14+
<ol id="list-color">
1515
<li>I made it!</li>
1616
<li>This website is colorful!</li>
1717
</ol>
18-
<h2 id="cool-text">Why I love Web Development</h2>
18+
<h2 class="center" id="cool-text">Why I love Web Development</h2>
1919
<p>Web Development is a very cool skill that I love learning!</p>
2020
<p>I love making websites because all I have to do is reload the page to see the changes I have made!</p>
2121
</body>

css/exercises/styles.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
11
/* Start adding your styling below! */
2+
body {
3+
background-color: yellow;
4+
}
5+
p {
6+
color: green;
7+
}
8+
9+
h1, h2{
10+
font-size: 36 px;
11+
}
12+
.center {
13+
text-align: center;
14+
}
15+
#list-color {
16+
color: blueviolet;
17+
}

unit-testing/chapter-examples/hello-jest/tests/fileName.js

Whitespace-only changes.

0 commit comments

Comments
 (0)