एचटीस्मस्ल क्या है? इसके किन्ही
पाँच टैग्स को रामझाइए ।
Answers
Answer:
html = hyper text markup language
iska prayog kisi website ki designing ke lie.web page ko banane ke lie kiya jaataa hai
<html>.........................to start html
<head><title>................</title></head>......................to give title of the webpage
<body bgcolor="color name">........to give background color
<img src=" url of image which you want"> </img>........to insert an image in html page
<basefont size="n" face="font name" color="color's name of text">...................................to give an specific font
</basefont>
<table>...............to create a table
<tr>.......to create the row of the table
<ul type="......................">,,,,,,,,,,,,,,to give unordered list
<ol type="......................">.....................to give an orderd list
<th>.................</th>...........to give table head
<td>.....................</td>
</tr>...............to give table data
</table>...................it close the table
</body>................it close the body tag
</html>...............it close the html page
Explanation: