- تحتوي سمة نمط HTML على بناء الجملة التالي:
<tagname style="property:value;">
مثال :
<!-- Background Color -->
<body style='background-color:powderblue;'>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
</body>
<!-- Text Color -->
<body>
<p style='color:blue;'>This is a paragraph.</p>
<p style='color:red;'>This is a paragraph.</p>
</body>
<!-- font-family -->
<body>
<p style='font-family:verdana;'>This is a paragraph.</p>
<p style='font-family:courier;'>This is a paragraph.</p>
</body>
<!-- font-size -->
<body>
<p style='font-size:300%;'>This is a paragraph.</p>
<p style='font-size:160%;'>This is a paragraph.</p>
</body>
<!-- text-align -->
<body>
<p style='text-align:center;'>This is a paragraph.</p>
<p style='text-align:left;'>This is a paragraph.</p>
</body>