HTML Features with Code and Output
Headings
Code:
<h1>Main Heading</h1>
<h3>Sub Heading</h3>
Output:
Main Heading
Sub Heading
Paragraph & Formatting
Code:
<p>This is a <b>bold</b> and <i>italic</i> text.</p>
Output:
This is a bold and italic text.
Link
Code:
<a href="[Link] here</a>
Output:
Click here (link)
Image
Code:
<img src="[Link] alt="Sample">
Output:
Sample image will appear here
List
Code:
<ul>
<li>Apple</li>
<li>Mango</li>
</ul>
Output:
- Apple
- Mango
Table
Code:
<table border="1">
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Ali</td><td>15</td></tr>
<tr><td>Sara</td><td>16</td></tr>
</table>
Output:
Name | Age
Ali | 15
Sara | 16
Form
Code:
<form>
Name: <input type="text"><br>
Email: <input type="email"><br>
<input type="submit" value="Submit">
</form>
Output:
Name: [____]
Email: [____]
[Submit]