HTML (HyperText Markup Language) adalah bahasa standar untuk membuat dan menyusun halaman web. Berikut adalah beberapa elemen dasar dalam HTML:
<h1>Ini adalah heading level 1</h1>
<h2>Ini adalah heading level 2</h2>
<h3>Ini adalah heading level 3</h3>
<p>Ini adalah paragraf pertama.</p>
<p>Ini adalah paragraf kedua.</p>
<a href="https://www.example.com">Kunjungi Example</a>
<img src="img/example.jpg" alt="Contoh Gambar" width="500" />
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<table border="1">
<tr>
<th>Nama</th>
<th>Umur</th>
</tr>
<tr>
<td>Ali</td>
<td>25</td>
</tr>
<tr>
<td>Budi</td>
<td>30</td>
</tr>
</table>
<form action="/submit" method="post">
<label for="name">Nama:</label>
<input type="text" id="name"
name="name"><br>
<label for="email">Email:</label>
<input type="email" id="email"
name="email"><br>
<input type="submit" value="Submit">
</form>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
</video>
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
</audio>