-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-me.html
executable file
·52 lines (48 loc) · 2.81 KB
/
about-me.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<!--I used a different syntax from the course notes because it wasn't working and this was on Mozilla's developer site-->
<title>About Me | Zoe Kafkes</title>
<link rel="icon" type="image/png" href="img/logo-02.png">
<link href="css/style.css" rel="stylesheet" media="screen"/>
<link href="css/mobile.css" rel="stylesheet" media="screen" />
<link rel="stylesheet" type="text/css" media="all" href="jgallery/dist/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" media="all" href="jgallery/dist/css/jgallery.min.css?v=1.5.5" />
<link rel="stylesheet" type="text/css" media="all" href="jgallery/dist/css/jgallery.css"/>
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
<script type="text/javascript" src="js/jgallery.min.js?v=1.5.5"></script>
<script type="text/javascript" src="js/touchswipe.min.js"></script>
</head>
<body>
<header>
<h1>Zoe Kafkes</h1>
<a class='mobile-logo' href="index.html"><img src="img/logo-04.png" alt="Zoe Kafkes" height='30'></a>
<a class='mobile-nav-toggle' onclick='navToggle()'><i class='fa fa-bars'></i></a>
</header>
<nav>
<ul>
<li class='nav-logo'><a href="index.html"><img src="img/logo-04.png" alt="Zoe Kafkes Logo"></a></li>
<li><a href="about-me.html">about me</a></li>
<li><a href="design.html">design</a></li>
<li><a href="photography.html">photography</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
<main>
<h1>about me.</h1>
<div id="about-me-photo">
<img src=img/zoe-drawing.jpg alt="Zoe Kafkes Illustration by Sheila Aldridge">
</div>
<div id="about-me-text">
<p>A recent graduate of the University of Miami, I earned a Bachelor's of Science in Communication with majors in public relations and political science with a minor in marketing (and I did it summa cum laude). After my first job working as the Communications Director for the Greek Orthodox Metropolis of Atlanta, I began working for Georgia Institute of Technology's School of City and Regional Planning in December 2017. I also love to freelance on the side.</p>
<p>I prefer to see the world through my camera lens. Different types of paper make me geek out. If given the choice between sitting by a pool or going on a hike, I would pick the hike every single time. Cooking is my favorite kind of science (and the only one I would say I'm particulary good at). Coffee might actually be my one true love. </p>
<p> Check out my work. You won't regret it. </p>
</div>
<div class="clear"></div>
</main>
</body>
</html>