-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (62 loc) · 2.8 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kathy Satterlee</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header id ="masthead">
<div class="container">
<a href="index.html" id="logo">Kathy Satterlee</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Kathy Satterlee</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header id ="masthead">
<div class="container">
<a href="index.html" id="logo">Kathy Satterlee</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div class="container" id="main-container">
<section class="main-section">
<h1>About Me</h1>
<img src="assets/images/profile_pic.jpg" alt="Profile Pic" class="auth-image">
<p> Hi, I'm Kathy. I'm formerly from Austin, TX and just moved to Atlanta, GA to pursue training (and eventually an awesome career) 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>
</section>
<section class="sidebar">
<div id="connect">
<h2> Connect With Me </h2>
<a href="https://github.com/ksatter/" target=_blank><img src="assets/images/git.png" alt="Github" class="social"></a>
<a href="https://www.linkedin.com/in/katheryn-satterlee/" target=_blank><img src="assets/images/li.png" alt="LinkedIn" class="social"></a>
<a href="https://stackoverflow.com/users/8413566/katheryn-satterlee?tab=profile" target=_blank><img src="assets/images/overflow.png" alt="Stack Overflow" class="social"></a>
</div>
</section>
</div>
<footer>
<div class="container">
<h6> © Copyright 2017 Kathy Satterlee</h6>
</div>
</footer>
</body>
</html>