HTML Styles (stil,şekillendirme)Örnek-1<!DOCTYPE html>
<html>
<body>
<p>-..Nornal Yazı Rengi.................</p>
<p style="color:red;">
Kırmızı</p>
<p style="color:blue;">
Mavi</p>
<p style="font-size:50px;"> Yazı Boyutu 50px (Pixel) Yazı Yazar</p>
</body>
</html>
HTML Background Color (Arka Plan Rengi)
Örnek-2<body style="background-color:
red;">
HTML Text Color (Metin Rengi)
Örnek-3<h1 style="color:
blue;">......................................</h1>
<p style="color:
red;">..........................................</p>
HTML Fonts (Yazı Tipleri)
Örnek-4<h1 style="font-family:
verdana;">...............................</h1>
<p style="font-family:
courier;">...................................</p>
HTML Text Size (Yazı Tipi Boyutu)
Örnek-5<h1 style="font-size:
300%;">..............................</h1>
<p style="font-size:
160%;">T...............................</p>
HTML Text Alignment (Yazı Hizalama)
Örner-6<h1 style="text-align:
center;">
Yazıyı Ortalar</h1>
<p style="text-align:
center;">
Yazıyı Ortalar</p>
Linkback:
HTML Styles (stil,şekillendirme)