Skip to content

Commit d32af93

Browse files
committed
you're doing great
1 parent 2ad1c94 commit d32af93

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

000_temp/74/index.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport"
6+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7+
<title>Document</title>
8+
<style>
9+
/* rule set*/
10+
/* selector is the h1 */
11+
/* declaration block is everything between { } */
12+
/* every declaration has a PROPERTY and a VALUE */
13+
h1 {
14+
color: red;
15+
}
16+
</style>
17+
</head>
18+
<body>
19+
20+
<h1>HELLO WORLD</h1>
21+
22+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. A atque autem, consectetur deleniti dolor expedita fugiat
23+
fugit harum illum iste itaque maiores maxime non obcaecati omnis quam ratione recusandae suscipit.</p>
24+
25+
<!-- ul>li*10 -->
26+
27+
<ul>
28+
<li>something</li>
29+
<li>another</li>
30+
<li>yet</li>
31+
<li>agoin</li>
32+
<li>more</li>
33+
<li>of</li>
34+
<li>this</li>
35+
<li>ice</li>
36+
<li>cream</li>
37+
<li>chocolate</li>
38+
</ul>
39+
40+
41+
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)