-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
83 lines (73 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<!--link rel="stylesheet" href="css/reset.css" type="text/css"-->
<link rel="stylesheet" href="css/style.css" type="text/css">
<style>
h1 {
font-size: 40px;
}
h2 {
font-size: 30px;
}
p {
font-size: 22px;
font-weight: normal;
}
</style>
</head>
<body>
<header>
<h1>Welcome To My Page</h1>
<h2>A Little Something About Me</h2>
</header>
<main>
<article>
<img src="img/me.jpg" alt="Doug">
<p>Hi, my name is Doug. In 2013, I launched the first ever one-stop-shop for Veterans Resources in Washington
State - RallyPoint/6. In 2015, I accepted a role as an Executive Director with an Equine Therapy Facility
serving veterans with PTSD and autistic children. And since 2016, I've served as the Executive Director for <a
href="https://missioncontinues.org">The
Mission Continues</a>, a national Veteran Service Organization.</p>
<ul>
<li>RallyPoint/6</li>
<li>Rainier Therapeutic Riding</li>
<li>Comprehensive Life Resources</li>
<li><a href="https://missioncontinues.org">The Mission Continues</a></li>
</ul>
</article>
<article>
<img src="img/montreal.jpg" alt="Montreal">
<p>I'm originally from Montreal, Canada. I moved to the U.S. when I was 19 years old. Montreal is an amazing city,
known for its hockey, poutine, winters and incredible night life. Here are the Top 10 Things you can do in Montreal.</p>
<ol>
<li>Watch a Hockey Game</li>
<li>Eat Smoked Meat</li>
<li>Visit Old Town</li>
<li>The Underground Mall</li>
<li>The Botanical Garden</li>
<li>Mount Royal</li>
<li>The Jazz Festival</li>
<li>Have Poutine</li>
<li>Practice French</li>
<li>Visit my Family</li>
</ol>
</article>
<article>
</div><img src="img/army.jpg" alt="Army">
<p>I'm also a veteran of both the Army and the Navy. I spent 4 years in the Navy as a Search
and Rescue Swimmer, and 20 years in the Army as a Forward Observer...retiring in 2013. But it was a long time
ago.....super proud of my time in though. Here's a quick list showing my Educational Background</p>
<ul>
<li>Code Fellows</li>
<li>Villanova University</li>
<li>Jefferson Communtiy College</li>
</article>
</main>
<footer>Copyright ©2020 - Doug "E" Fresh</footer>
<script src="js/app.js"></script>
</body>
</html>