Complete_HTML_Guide_with_Examples
Complete_HTML_Guide_with_Examples
To create a button:
<button>Click me</button>
To create a link:
To upload an image:
To create a list:
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<ul>
<li>Coffee</li>
Complete HTML Guide
<li>Tea</li>
<li>Milk</li>
</ul>
<hr>
To break a sentence:
<br>
<h1 style="font-size:60px;"></h1>
<p style="color:red;"></p>
<pre>
Point 1
Point 2
</pre>
Complete HTML Guide
<body style="background-color:powderblue;">
To center text:
To add a quotation:
<q>Quotation here</q>
Complete HTML Guide
padding:20px;
margin:20px;
Form example:
<form action="/action_page.php">
</form>
To create a table:
<table>
<tr>
<th>Header</th>
<th>Header</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>
Complete HTML Guide
<th colspan="2">Header</th>
To add a video:
<video controls>
</video>
To add audio:
<audio controls>
</audio>