Skip to content

Commit 5a50974

Browse files
committed
Separate Sheet
1 parent f78e8ef commit 5a50974

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" type="text/css" href="./styles.css" />
5+
</head>
6+
<body>
7+
My background should be blue.
8+
</body>
9+
</html>

exercises/02-Separate-Stylesheet/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@
22
1. Select the body tag.
33
2. Add the background rule equal to blue.
44
*/
5+
6+
body {
7+
background-color: blue;
8+
}

0 commit comments

Comments
 (0)