-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (55 loc) · 2.61 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<!-- head definitions go here -->
<title>Carter Moody's Website</title>
</head>
<body>
<h1 style="text-align:center">Welcome to my website, a tremendous website!</h1>
<!-- <h2 style="text-align:center">please, make yourself at home.</h2> -->
<!-- Load and Center an Image -->
<img src="https://www.cartermoody.com/images/CarterMoody.png"
style="width:200px;display:block;margin:0 auto"
alt="A picture of me"
onclick="location.href='index.html'"> <!-- onclick sends back to main page -->
<p style="text-align:center">
<a href="https://www.linkedin.com/in/cartermoody/">Connect with me on LinkedIN!</a>
</p>
<p style="text-align:center">Website currently being built as fast as I can learn HTML :)</p>
<p style="text-align:center">While you wait, why not
<a href="https://www.cartermoody.com/documents/Resume_Carter_Moody.pdf" download>download</a>
or
<a href="https://www.cartermoody.com/documents/Resume_Carter_Moody.pdf">view</a>
my resume!
</p>
<p style="text-align:center">
<a href="https://www.cartermoody.com/birdfeeder.html">FEED THE BIRDS</a>
</p>
<p>Navigation:</p>
<!-- unordered (bulleted) navigation list -->
<ul style="list-style-type: none">
<li>
<a href="https://www.cartermoody.com/birdfeeder.html">$NANO Live Interactive Bird Feeder</a> <!-- link to a web address -->
</li>
<li>
<a href="https://www.cartermoody.com/about.html">Site Information</a> <!-- link to a header id in the same page -->
</li>
<li>
<a href="https://www.cartermoody.com/RNGRTS.html">Android Game "RNGRTS"</a> <!-- link to a web address -->
</li>
<li>
<a href="https://www.cartermoody.com/reviews.html">Ratings and Reviews</a> <!-- link to a web address -->
</li>
<li>
<a href="https://www.cartermoody.com/quinn.html">Short Stories and Artwork</a> <!-- link to a web address -->
</li>
</ul>
<!-- Footer -->
<hr></hr> <!-- Horizontal Ruler -->
<h5 id="info" style="text-align:center">Site Information</h5>
<h5 id="info" style="text-align:center">Hosted on GitHub</h5>
<p style="text-align:center">Website owned and operated by Carter Moody.
<a href="https://www.cartermoody.com">Click here to home</a>
</p>
</body>
</html>