Skip to content

Commit a2af678

Browse files
committed
External CSS
1 parent 5403ce6 commit a2af678

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

starter/CSS-Fundamentals/index.html

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
<head>
55
<meta charset="UTF-8" />
66
<title>The Basic Language of the Web: HTML</title>
7-
<style>
8-
h1 {
9-
color: blue;
10-
}
11-
</style>
7+
<link rel="stylesheet" href="./style.css">
128
</head>
139

1410
<body>

starter/CSS-Fundamentals/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
h1 {
2+
color: blue;
3+
}

0 commit comments

Comments
 (0)