-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (70 loc) · 2.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="myown" content="Philip Haynes Website.">
<title>Philip Haynes Profile</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!--Start of my Header here -->
<header class="edge">
<div>
<h1>Philip Haynes</h1>
<h2>Engineering Flex Student</h2>
<nav><a href="#me">Me</a> | <a href="#about">About</a> | <a href="#contact">Contact</a> </nav>
</div>
</header>
<!-- end of the header here -->
<!-- start of the main body -->
<main class="edge">
<!-- created a circle class for the image -->
<img src="self3.jpg" height="500" width="500" class="circle" alt="Me and My Puppy">
<!-- start of main content after image -->
<section>
<h3><a id="me">Introduction to Me: Philip Haynes!</a></h3>
<p>
I am a Solar Technology Specialist living in Fort Worth, Texas!
</p>
<!-- br used to seperate the paragraph from the list quick facts -->
<br>
<div class="alignwp">
Quick Facts About Me:
<ul>
<li>Veteran of the United States Air Force</li>
<li>Originally from South Carolina</li>
<li>Lived in Tokyo, Japan</li>
<li>Been coding since I was 10 years old!</li>
</ul>
</div>
</section>
<hr>
<!-- break between information -->
<section>
<h3><a id="about">About Phil</a></h3>
<p>
I started coding when I was noticeably young and have always coded as a hobby. I really enjoy working with others and sharing ideas. This always leads to better programs and websites. Other than coding I have always enjoyed flying airplanes. There is nothing like flying above the earth and seeing just how small everything is. Also, while I am not flying or coding, I am playing video games, such as Path Of Exile.
</p>
<hr>
</section>
<!-- break between about me -->
<section>
<h3> <a id="contact">Contact Phil</a></h3>
<h3>How to Contact Me</h3>
<ol>
<li><a href="https://www.linkedin.com/in/philip-haynes-648b4897/">Linkedin</a></li>
<li><a href="https://github.com/philhaynes337">GitHub</a></li>
<li><a href="mailto:[email protected]">E-Mail</a></li>
</ol>
</section>
</main>
<!-- end of the main body -->
<!-- start of the footer -->
<footer class="edge">
<div>
© Philip Haynes
</div>
</footer>
<!-- end of the footer -->
</body>
</html>