-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (109 loc) · 3.18 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
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width"
/>
<title>Alex Myers | Software Developer</title>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto"
/>
<link
href="style.css"
rel="stylesheet"
/>
</head>
<body>
<!-- Page Header -->
<header>
<h1>Alex Myers</h1>
<h3>Software Developer</h3>
</header>
<!-- Main Page Content -->
<main>
<img
src="portfolio-picture.jpeg"
alt="Alex Myers"
height="500"
/>
<article>
<h2>Hello! I'm Alex Myers.</h2>
<section>
<h3>Allow me to introduce myself</h3>
<p>I am a software developer living in Columbus, Ohio.</p>
<p>A small list of my interests/hobbies include:</p>
<ul>
<li>Sim Racing and Drifting</li>
<li>Buddhism and Eastern Philosophy</li>
<li>Rockets and Space Exploration</li>
<li>Blacksmithing and Woodworking</li>
</ul>
<p>
Please take a look at my portfolio, and feel free to
<a href="#contact">contact me</a>!
</p>
</section>
<hr />
<section>
<h3>About Alex</h3>
<p>
I am an Army veteran, a father, and a passionate software developer.
</p>
<p>
After my time in the military, I really started to take my future
career path seriously and began studying software development.
</p>
<p>
I joined Thinkful to gain crutial skills and to further deepen my
understanding of software development.
</p>
</section>
<hr />
<section id="contact">
<h3>Contact Alex</h3>
<p>
I'd love to hear from you! Feel free to contact me or follow me:
</p>
<ol>
<li>
<a href="https://www.linkedin.com/in/alex-myers-450bb6252/"
>LinkedIn</a
>
</li>
<li><a href="https://github.com/pek10">GitHub</a></li>
</ol>
<!-- A cool pictures of the famous Columbus skyline -->
<img
src="columbus.jpg"
alt="Columbus, Ohio"
/>
<p>
Photo by
<a
href="https://unsplash.com/@hansjuergen?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>Hans-Jürgen Weinhardt</a
>
on
<a
href="https://unsplash.com/s/photos/columbus?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>Unsplash</a
>
</p>
</section>
</article>
</main>
<!-- Page Footer -->
<footer>
<p>© Alex Myers - All rights reserved</p>
</footer>
<!-- Scripts probably won't be needed, but I'm including it -->
<script src="script.js"></script>
</body>
</html>