forked from truecodersio/HTML_Exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (116 loc) · 3.48 KB
/
index.html
File metadata and controls
123 lines (116 loc) · 3.48 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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">
<h1>Matthew Hasemeier</h1>
<p>
I love to eat, drink & cook, and am a roller coaster & travel
enthusiast. I have passions for technology, making art, building things,
houseplants, the outdoors, hiking, camping, dogs, cars, movies, biking,
alternative energy, boating, and flying. I consider myself a jack of all
trades. As such, I have worked in and/or recieved extensive training in
numerous fields. These fields include, aircraft automobile & home
mantainence, commercial & fine printing, restaurant management, film
production, dentistry, real estate, and driving for hire. I am a
registered dental assistant and a licensed remote pilot.
</p>
</div>
<div id="exercise2">
<ul>
<li>
<a href="www.linkedin.com/in/matthew-hasemeier-954098148">My LinkedIn</a>
</li>
<li>
<a href="https://www.truecoders.io">TrueCoders</a>
</li>
<li>
<a href="https://www.Robinhood.com">Robinhood Investing</a>
</li>
</ul>
</div>
<div id="exercise3">
<img src="./images/example.png" alt="A silhouette" />
</div>
<div id="exercise4">
<!-- Complete Exercise 4 HERE -->
<p>
I looked down at the board. "The <strong>point</strong> isn't to win?" I
asked. "The <strong>point</strong>," <span>Bredon</span> said grandly,
"is to <u>play</u> a <em>beautiful</em> game." He lifted his hands and
shrugged, his face breaking into a beautific smile. "Why would I want to
win anything other than a <em>beautiful</em> game?"
</p>
</div>
<div id="exercise5">
<!-- Complete Exercise 5 HERE -->
<header>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about">About</a>
</li>
<li>
<a href="/projects">Projects</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Main Heading</h1>
<p>Author... Bio...</p>
</section>
<article>
<section>
<h2>Sub Heading</h2>
<div>
<p>Bacon ipsum...</p>
</div>
</section>
<section>
<h2>Sub Heading</h2>
<p>Bacon ipsum...</p>
<div>
<h3>Another Sub Heading</h3>
<p>Bacon ipsum...</p>
</div>
</section>
</article>
</main>
<footer>
<nav>
<ul>
<li>
<a href="/index.html">Home</a>
</li>
<li>
<a href="/privacy.html">Privacy Policy</a>
</li>
<li>
<a href="/terms.html">Terms and Conditions</a>
</li>
<li>
<a href="/credits.html">Credits</a>
</li>
<li>
<a href="/references.html">References</a>
</li>
</ul>
</nav>
<div>
<p>Powered by 🕯️</p>
<p>© TrueCoders 2021-24</p>
</div>
</footer>
</div>
</body>
</html>