forked from johndward01/HTML_Exercise
-
Notifications
You must be signed in to change notification settings - Fork 554
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (85 loc) · 2.14 KB
/
index.html
File metadata and controls
93 lines (85 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Intro</title>
</head>
<body>
<div id="exercise1">
<!-- Complete Exercise 1 HERE -->
</div>
<div id="exercise2">
<!-- Complete Exercise 2 HERE -->
</div>
<div id="exercise3">
<!-- Complete Exercise 3 HERE -->
</div>
<div id="exercise4">
<!-- Complete Exercise 4 HERE -->
<p>
I looked down at the board. "The point isn't to win?" I asked. "The
point," Bredon said grandly, "is to play a beautiful game." He lifted
his hands and shrugged, his face breaking into a beautific smile. "Why
would I want to win anything other than a beautiful game?"
</p>
</div>
<div id="exercise5">
<!-- Complete Exercise 5 HERE -->
<div>
<div>
<div>
<span>
<a href="/">Home</a>
</span>
<span>
<a href="/about">About</a>
</span>
<span>
<a href="/projects">Projects</a>
</span>
</div>
</div>
</div>
<div>
<div>
<h1>Main Heading</h1>
<p>Author.. Bio...</p>
</div>
<div>
<div>
<h2>Sub Heading</h2>
<div>
<p>Lorem ipsum...</p>
</div>
</div>
<div>
<h2>Sub Heading</h2>
<p>Lorem ipsum...</p>
<div>
<h3>Another Sub Heading</h3>
<p>Lorem ipsum...</p>
</div>
</div>
</div>
</div>
<div>
<div>
<div>
<span>
<a href="/privacy">Privacy Policy</a>
</span>
<span>
<a href="/terms">Terms and Conditions</a>
</span>
</div>
</div>
<div>
<p>Powered by 🕯️</p>
<p>© TrueCoders 2021-24</p>
</div>
</div>
</div>
</body>
</html>