HTML கற்போம் - 4
The HTML <meta> Element
<meta> tag (Metadata) ஆனது குறிப்பிட்ட HTML document இன் விபரிப்பை வழங்குவதாக அமையும். இது குறிப்பட்ட HTML page இன் வெளியீடாக அமையாது. இதனுல் search engines பயன்படுத்தும் keywords கள் உள்ளடக்கப்படும்.<meta> tags , <head> element இனுல் வளங்கப்படும்
<meta> Tags - Examples
search engines தேவையான keywords வரையறை செய்வதற்கும், குறித்த இணையத்தளம் பற்றிய விபரிப்பினை மேற்கொள்வதற்கும், <meta> tag பயன்படுகின்றது.
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
<meta name="description" content="Free Web tutorials on HTML and CSS">
<meta name="author" content="Hege Refsnes">
<meta http-equiv="refresh" content="30"> - Refresh document every 30 seconds:
HTML Formatting Tags
1.
<html>
<body>
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
</body>
</html>
Browser இல் பின்வருமாறு காட்சியளிக்கும்.
This text is bold
This text is strong
This text is emphasized
This text is italic
This text is small
This is subscript and superscript
2.
<html>
<head><title> font face, font color, font size, and background color</title> </head>
<body bgcolor=”#c0f2d9”> <! Define background color >
<h1> <font color=”orange”> Our Country</h1> <! Define font color >
<p> <font face=”arial” fontsize=”3”> My School </p> <! Define font,font size >
</body>
</html>
Tag
|
Description
|
<b>
|
Defines bold text
|
<em>
|
Defines emphasized text
|
<i>
|
Defines a part of text in an alternate voice or mood
|
<small>
|
Defines smaller text
|
<strong>
|
Defines important text
|
<sub>
|
Defines subscripted text
|
<sup>
|
Defines superscripted text
|
0 comments:
Post a Comment