-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (43 loc) · 2.11 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Basic Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<div class="pageid">
<h1>Kathy Satterlee</h1>
</div>
<nav>
<ul>
<li> <a href="index.html">About</a></li>
<li> <a href="Portfolio.html">Portfolio</a></li>
<li> <a href="Contact.html">contact</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="content">
<h2>About Me</h2>
<hr/>
<img src="assets/images/profile_pic.jpg" alt="Profile Pic" height=200px style= "float:left">
<p> Hi, I'm Kathy. I'm formerly from Austin, TX and just moved to Atlanta, GA to pursue training (and eventually an awesome carreer) in Web Development. I love books, my wife, and my dogs (not necessarily in that order!). </p>
<p> I left school in 1999 and have been working my way up the customer service ladder since then. I recently realized that if I wanted to continue having upward mobility, I needed to add some more technical skills to my resume. After careful consideration, I decided that a career in Web Development was one that would be both engaging and profitable. I researched the available options for training, from four year CS programs to three month crash courses in front-end development. After all of that reserch, it was pretty clear to me that the Ga Tech Coding Bootcamp was the right fit for me and, well, here I am!</p>
</div>
<div class="connect">
<h3> Connect With Me </h3>
<hr>
<ul>
<li> <a href="https://github.com/ksatter/" target=_blank><img src="assets/images/git.png" height="50px" alt="Github"></a></li>
<li> <a href="https://www.linkedin.com/in/katheryn-satterlee/" target=_blank><img src="assets/images/li.png" height= 50px alt="LinkedIn"></a></li>
<li> <a href="https://stackoverflow.com/users/8413566/katheryn-satterlee?tab=profile" target=_blank><img src="assets/images/overflow.png" height= 50px alt="Stack Overflow"></a></li>
</ul>
</div>
</div>
<footer>
<h6> © Copyright 2017 Kathy Satterlee</h6>
</footer>
</body>
</html>