-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me Project</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="https://kit.fontawesome.com/805418f063.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>About Me</h1>
<nav>
<p>Connect with me on:
<a href="https://github.com/ezgi-c"><i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/ezgi-coban3261/"><i class="fa-brands fa-linkedin"></i></a>
</p>
</nav>
</header>
<main>
<section id="biography">
<h2>Biography</h2>
<p>My name is Ezgi Coban (pronounced ez-ghee cho-bahn) and my pronouns are she/her. In Turkish, Ezgi means melody, and Çoban means shepherd. I grew up in Istanbul, Turkey until I started High School here in Washington State. It was a culture shock at first but I grew to love the Pacific Northwest. I currently reside in Seattle with my daughter and 2 cats.</p>
</section>
<section id="education">
<h2>Education History</h2>
<ul>
<li>I attended University of Washington after high school and graduated with a B.A. in Psychology in 2012.</li>
<li>Few years after, I became interested in skincare and got my Esthetician certificate from Paroba College.</li>
<li>I am currently studying to become a Software Developer at Code Fellows.</li>
</ul>
</section>
<section id="job">
<h2>Work Experience</h2>
<p>My work experience includes several positions in customer service, office work, skin care, and food service. I have most enjoyed working in skin care however it was hard on my body. I am looking forward to switching to a career in which I mostly use my brain.</p>
</section>
<section id="goals">
<h2>Goals</h2>
<p>I want to become a Software Developer and I want to be successful doing it. My motivation is to give my daughter and I a good life while having a career that challenges and stimulates me.</p>
</section>
<section id="top ten">
<h2>My Top Ten Beaches in Seattle area</h2>
<ol>
<li>Golden Gardens</li>
<li>Alki</li>
<li>Edmonds</li>
<li>Discovery</li>
<li>Carkeek</li>
<li>Richmond</li>
<li>Madrona</li>
<li>Madison</li>
<li>Denny Blaine</li>
<li>Myrtle Edwards</li>
</ol>
</section>
</main>
<footer>
<p>© Ezgi Coban 2022</footer></p>
</footer>
<script src="js/app.js"></script>
</body>
</html>