Skip to content

Commit 563da40

Browse files
CSS Demo
1 parent 60ae616 commit 563da40

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>CSS Demo</title>
6+
7+
<link rel="stylesheet" href="css/styles.css">
8+
9+
<style>
10+
11+
.internal-css-demo {
12+
font-weight: 200
13+
}
14+
15+
</style>
16+
</head>
17+
<body>
18+
19+
<h2 style="color: red">CSS Inline Demo</h2>
20+
21+
<h2 class="internal-css-demo">CSS Internal Demo</h2>
22+
23+
<h2 class="external-css-demo">CSS External Demo</h2>
24+
25+
</body>
26+
</html>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/* this is a comment */
2+
.external-css-demo:hover {
3+
color:green;
4+
}

0 commit comments

Comments
 (0)