News
News content
Jumpstart your web development journey with easy-to-follow guides, live examples, and interactive learning tools.
Get StartedUsed to underline the text.
<u>Underlined Text</u>
Creates an input field for user data.
<input type=\"text\" placeholder=\"Enter your name\">
Defines a label for an input element.
<label for=\"name\">Name:</label>
Displays an image.
<img src=\"https://via.placeholder.com/100\" alt=\"Image\">
Embeds a video.
<video width=\"200\" controls><source src=\"sample.mp4\" type=\"video/mp4\"></video>
Creates a table with rows and columns.
<table>\n <tr><th>Name</th><th>Age</th></tr>\n <tr><td>John</td><td>25</td></tr>\n</table>
Name | Age |
---|---|
John | 25 |
Defines self-contained content.
<article><h3>News</h3><p>News content</p></article>
News content
Defines footer for a document or section.
<footer>Copyright © 2025</footer>
Used for different levels of headings. h1 is the largest, h6 is the smallest.
<h1>Heading 1</h1>
Creates a hyperlink to another page or site.
<a href=\"https://example.com\">Visit</a>
Creates a horizontal line divider.
Text Above<hr>Text Below
Used to group inline elements for styling.
<span style=\"color: red;\">Red Text</span>
Used to group block-level content for layout or styling.
<div style=\"border:1px solid #000;\">Content</div>
Multiline input for forms.
<textarea rows=\"3\" cols=\"30\">Type here</textarea>
Creates a dropdown menu.
<select>\n <option>HTML</option>\n <option>CSS</option>\n</select>