-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemel.html
More file actions
35 lines (33 loc) · 1.4 KB
/
Copy pathtemel.html
File metadata and controls
35 lines (33 loc) · 1.4 KB
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
<!DOCTYPE html>
<html lang ="tr">
<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>Bu bir temel HTML başlığıdır.</title>
</head>
<body>
<h1 title="Ana Başlık" id="anabaslik">Temel HTML komutları</h1> <!-- Başlık etiketi --> <!-- title ve id attribute kullanımı -->
<p>Bu belge, HTML'nin temel yapısını ve etiketlerini göstermektedir.</p>
<h2 class="kalin">Temel HTML Etiketleri</h2>
<p>title</p>
<p>charset</p>
<p>viewport</p>
<p>h1</p>
<p>p</p>
<p>meta</p>
<h2 class="kalin">Body bölümü komutları</h2> <!-- class ile stil verdik -->
<p style="color: aqua;">Hx Başlık Metinleri</p>
<p style="color: red;">p Paragraf Etiketi</p> <!-- style ile renk verdik -->
<h3>Diğer Etiketler</h3>
<p style="color: green;">a Bağlantı Etiketi</p>
<p>img Resim Etiketi</p>
<p>div: Bölüm Etiketi</p>
<h4>Liste Etiketleri</h4>
<p>ul Sırasız Liste</p>
<p>ol Sıralı Liste</p>
<p>li Liste Elemanı</p>
<h1>Sitemizi <br>ziyaret <br>ettiğiniz <br> için <br> <!-- Satır sonu eklemek için <br> etiketi kullanılır (bir nevi \n diyebiliriz)-->
sağ <br> olun.</h1>
</body>
</html>