Skip to content

Commit 76713e7

Browse files
committed
small change
1 parent 5bfdeb9 commit 76713e7

File tree

4 files changed

+50
-21
lines changed

4 files changed

+50
-21
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!-- add a style tag and select the p tag and make it color blue -->
2+
<p>
3+
Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology
4+
around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity,
5+
math,writing, and confidence.
6+
</p>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
a {
6+
/* change this style to yellow */
7+
color: red;
8+
}
9+
</style>
10+
</head>
11+
<body>
12+
Hello! <a href="#">I am an anchor in red, change my color to yellow</a>
13+
</body>
14+
</html>

exercises/01-Hello-World/index.html

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
<!DOCTYPE HTML>
1+
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<title>Index 1</title>
5-
<style>
6-
a {
7-
color: yellow;
8-
}
9-
</style>
3+
<head>
4+
<title>Index 1</title>
5+
<style>
6+
a {
7+
color: yellow;
8+
}
9+
</style>
10+
</head>
1011

11-
</style>
12-
</head>
13-
14-
<body>
15-
<a href="https://google.com" target="_blank">Click me to open google.com</a>
16-
</body>
17-
</html>
12+
<body>
13+
<a href="https://google.com" target="_blank">Click me to open google.com</a>
14+
</body>
15+
</html>
Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
1-
<!-- add a style tag and select the p tag and make it color blue -->
2-
<p>
3-
Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology
4-
around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity,
5-
math,writing, and confidence.
6-
</p>
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<style>
5+
p {
6+
color: blue;
7+
}
8+
</style>
9+
</head>
10+
<body>
11+
<p>
12+
Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the
13+
technology around them. Having children learn coding at a young age prepares them for the future. Coding helps children with
14+
communication, creativity, math,writing, and confidence.
15+
</p>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)