-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Henry Seymour's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<!--All images are non copyright from PixBay.com-->
<nav class="main-menu">=
<ul class="menu">
<li class="name">Henry Seymour</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<header>
<img src="images/selfie.jpg" alt="Image of Henry Seymour" class="profile-image">
<h1 class="tag name">Hello, I’m Henry.</h1>
<p class="tag location">Pittsburgh, PA.</p>
</header>
<main>
<section class="background">
<h2>Background</h2>
<p>Hello, my name is Henry Seymour. I have lived in Pittsburgh, Pennsylvania for my entire life. I’m an aspiring developer looking to start my career in tech. I’ve had many different jobs throughout my life and I am currently getting my TreeHouse Techdegree in order to take my education to the next level!</p>
<blockquote>He who learns but does not think, is lost! He who thinks but does not learn is in great danger. -<cite><a href="https://www.azquotes.com/quote/553407">Confucius</a></cite></blockquote>
</section>
<div class="flex">
<section class="info-card">
<h2>Goals</h2>
<p>I want to master the process of building web sites and increase my knowledge, skills and abilities in:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Ruby</li>
<li>Rails</li>
</ul>
<p>I’d like to start my career in front end design and continue to build and expand on my knowledge. I am also working towards creating my own online business.</p>
</section>
<section class="info-card">
<h2>Interests</h2>
<p>I have always been interested in technology and enjoy learning about the latest breakthroughs. Thanks to the internet I am able to learn just about anything I want at the click of a button.</p>
<ul class="interests">
<li>Bitcoin</li>
<li>BlockChain</li>
<li>3D Design</li>
<li>Graphic Design</li>
<li>Economics</li>
<li>Business</li>
<li>Marketing</li>
</ul>
</section>
</div>
</main>
<footer>
<a href="https://github.com/mysticaldev" class="social github">Github</a><br>
<p class="copyright">©Copyright 2020, Henry Seymour</p>
</footer>
</body>
</html>