-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (44 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kodluyoruz-HTML</title>
</head>
<body>
<h1>Merve Reyhani</h1>
<!-- h1 ile Ad-Soyad başlık şeklinde yazıldı-->
<h3>Hakkımda</h3>
<p>Merhaba. Ben Merve Reyhani! Muğla'da yaşıyorum. Web geliştirme ile ilgileniyorum. Eğitimler alarak yeni şeyler öğreniyor, kendimi sürekli geliştiriyorum.</p>
<img src="./img/computer.jpg" height=300px alt="Bilgisayar">
<h2>İlgi Alanlarım</h2>
<!-- h2 ile Sevdiğim Filmler hakkında alt başlık oluşturdum -->
<ol>
<li>Film
<ul>
<li>
<a href="https://www.imdb.com/title/tt0111161/ratings/?ref_=tt_ov_rt" target="_blank">The Shawshank Redemption</a>
</li>
<li>Inception</li>
<li>Life is Beautiful</li>
</ul>
</li>
<li>Dizi
<ul>
<li>Breaking Bad</li>
<li>Game Of Thrones</li>
<li>Friends</li>
</ul>
</li>
<li>Kitap
<ul>
<li>
<a href="https://www.goodreads.com/book/show/2657.To_Kill_a_Mockingbird?from_search=true&from_srp=true&qid=8BGCQPPrgZ&rank=1">To Kill a Mockingbird</a>
</li>
<li>One Hundred Years of Solitude</li>
<li>1984</li>
</ul>
</li>
</ol>
</body>
</html>