9th HTML Important Program by Zia Ur Rehman Concepts College
9th HTML Important Program by Zia Ur Rehman Concepts College
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
2. Formatting Text
<!DOCTYPE html>
<html>
<head><title>Text Formatting</title></head>
<body>
<p><b>Bold Text</b></p>
<p><i>Italic Text</i></p>
<p><u>Underlined Text</u></p>
</body>
</html>
3. Creating a Hyperlink
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Cherry</li>
</ul>
<ol>
<li>First Step</li>
<li>Second Step</li>
<li>Third Step</li>
</ol>
Write an HTML program to display a table with student names and marks.
<table border="1">
<tr>
<th>Name</th>
<th>Marks</th>
</tr>
<tr>
<td>Ali</td>
<td>85</td>
</tr>
<tr>
<td>Ayesha</td>
<td>90</td>
</tr>
</table>
<form>
</form>
8. Embedding Audio
<audio controls>
</audio>
9. Embedding Video
</video>