-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterests.html
More file actions
36 lines (33 loc) · 867 Bytes
/
interests.html
File metadata and controls
36 lines (33 loc) · 867 Bytes
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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>İlgi Alanlarım</title>
</head>
<body>
<header>
<nav>
<a href="index.html">Ana Sayfa</a> |
<a href="about.html">Hakkımda</a> |
<a href="interests.html">İlgi Alanlarım</a> |
<a href="contact.html">İletişim</a> |
<a href="flex-lab.html">Flexbox Lab</a>
</nav>
</header>
<main>
<h2>İlgi Alanlarım</h2>
<h3>Hobiler</h3>
<ul>
<li>Teknoloji ve İnovasyon</li>
<li>Tarih ve Araştırma</li>
<li>Doğa Sporları</li>
</ul>
<h3>Akademik Odak Noktaları</h3>
<ol>
<li>Veri Yapıları</li>
<li>Yapay Zeka</li>
<li>Web Teknolojileri</li>
</ol>
</main>
</body>
</html>