HTML5 ÖRNEKLERİ
Bu makalede size bir kaç HTML5 Kod Örneğinden bahsedeceğim
HTML5 KOD ÖRNEKLERİ
HTML5 PARAGRAF KODU
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>
Bilgileri Ekleme Kodu
<!DOCTYPE html>
<html>
<body>
<address>
Written by W3Schools.com<br>
<a href="mailto:us@example.org">Email us</a><br>
Address: Box 564, Disneyland<br>
Phone: +12 34 56 78
</address>
</body>
</html>
Bir Başlık İle Tablo Kodu
<!DOCTYPE html>
<html>
<body>
<table border="1">
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
</body>
</html>
0 yorum:
Yorum Gönder