Heading Tags
பல அளவுள்ள எழுத்து வடிவங்களை HTML ல் அமைக்க முடியும். HTMLலில் ஆறு படிநிலைகளில் எழுத்து அளவுகளை இந்த
<h1>, <h2>, <h3>, <h4>, <h5>, மற்றும் <h6>. என்ற
Tags கொண்டு நாம் வடிவமைக்கலாம்.
Example
<!DOCTYPE html>
<html>
<head>
<title>Heading Example</title>
</head>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
இந்த code மூலம் கிழ்கண்ட படி வெளியிடு browser ல் தொன்றும்
Paragraph Tag
இந்த <p> tag இரண்டு வழியில் பத்திகளை எழுத பயன்படுகிறது. ஒவ்வொரு பத்தியும்
<p> மற்றும் a closing
</p> tag கொண்டிருக்கும்.
Example
<!DOCTYPE html>
<html>
<head>
<title>Paragraph Example</title>
</head>
<body>
<p>Here is a first paragraph of text.</p>
<p>Here is a second paragraph of text.</p>
<p>Here is a third paragraph of text.</p>
</body>
</html>
இந்த code மூலம் கிழ்கண்ட படி வெளியிடு browser ல் தொன்றும்
Here is a first paragraph of text.
Here is a second paragraph of text.
Here is a third paragraph of text.