-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (56 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Enzie Riddle's Profile</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Enzie Riddle</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
</ul>
</div>
<header>
<img src="images/profile-photo.jpg" alt="Photo of Enzie Riddle" class="profile-image">
<h1 class="tag name">My name is Enzie.</h1>
<p class="tag location">I live in Wichita, Kansas.</p>
</header>
<div class= "skills">
<h3>Hobbies:</h3>
<ul>
<li>lifting weights</li>
<li>sprinting</li>
<li>digital art</li>
</ul>
</div>
<main class="flex">
<div class="card">
<h2>Background</h2>
<p>I have ample experience in the Customer Service field, but am now striving to become the best web developer I can be.</p>
<p> I have a small business in which I use spray paint to create designs on computer towers. Not only am I excited to learn, but I am also passionate about creating, whether artistically or as a developer.</p>
</div>
<div class="card">
<h2>Goals</h2>
<p>Become skilled in the following languages:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>Python</li>
</ul>
<p>I am looking forward to gaining experience in order to work remotely and travel the world.</p>
</div>
</main>
<footer>
<ul>
<li><a href=https://github.com/enzieriddle class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2019, Enzie Riddle</p>
</footer>
</body>
</html>