<input type="text" name="name" autocomplete="on">Allows the browser to suggest possible values for the input field.
<img src="image.jpg" srcset="image-low.jpg 480w, image-med.jpg 800w">The srcset attribute allows you to provide a list of image sources for different screen resolutions.
<a href="https://example.com/file.zip" download="file.zip">Download</a>Allows the browser to download the file when the link is clicked.
<select multiple>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>Allows the user to select multiple options from a dropdown.
<input type="text" autofocus>Sets the input field to be focused automatically when the page loads.