-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (67 loc) · 3.62 KB
/
about.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
<!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>some title here</title>
<link rel="stylesheet" href="./src/css/main.css">
<link rel="stylesheet" href="./src/css/about.css">
</head>
<body style="height: 80vh">
<nav class="navbar">
<h2 class="navbar-header"><a href="./index.html"><span class="sezai">Sezai</span> <span class="emre">Emre</span> <span class="konuk">Konuk</span></a></h2>
<div class="navbar-link-wrapper">
<ul>
<li class="nav-item"><a href="./index.html">Index.html</a></li>
<li class="nav-item"><a href="./about.html">About.html</a></li>
<!-- <li class="nav-item"><a href="./projects.html">Projects.html</a></li>
<li class="nav-item"><a href="./skills.html">Skills.html</a></li> -->
</ul>
</div>
</nav>
<section name="about">
<div class="about-wrapper">
<div class="about-item">
<h2>As a Human</h2>
<ul>
<li>I was born in Turkey on the 4th of December, 2003.</li>
<li>I have traveled to many cities in Turkey, still exploring my country.</li>
<li>I am interested in myth-like religions like shamanism.</li>
<li>And also interested in mythology. I have read many books about Turkish, Greek, Asian, and Swedish myths.</li>
<li>Currently, I am digging into Harry Potter universe :).</li>
</ul>
</div>
<div class="about-item">
<h2>As a Student</h2>
<ul>
<li>In high school, I was interested in physics. (actually, I still can't decide where to study :D)</li>
<li>I have done some sports in high school like Volleyball and Table Tennis. I was a licensed player in Table Tennis.</li>
<li>After high school, I got into Hacettepe University Artificial Intelligence Engineering Department.</li>
<li>Now, I am an active Ar-Ge member of ACM Hacettepe and FSS (ÖYT) Hacettepe.</li>
</ul>
</div>
<div class="about-item">
<h2>As a Developer</h2>
<ul>
<li>I have built local projects with Express.js and Django, using different types of databases.</li>
<li>I am currently working on RESTful API's, such as Django Rest Framework</li>
<li>I know a little about Front-end frameworks, so basically, I can't design smoothly xD</li>
<li>I am interested in artificial intelligence, and I love reading articles and news about it.</li>
<li>I love solving any kind of problem: Hardware, Software, Code, etc.</li>
</ul>
</div>
<div class="about-item">
<h2>As a Musician</h2>
<ul>
<li>I've been into music since high school.</li>
<li>I started with playing percussion, but then I learned many instruments.</li>
<li>While learning from them, I have also learned mid-level music theory.</li>
<li>I can currently play the flute, piano, guitar(s), and Turkish baglama.</li>
<li>But right now, I am interested more in choirs. So I am in a choir as a bass in the Başkent Filarmoni Choir.</li>
</ul>
</div>
</div>
</section>
</body>
</html>