Jul 22, 2024
sling.html
).<!DOCTYPE html>
: Specifies the HTML version.<html>
: Root element containing all HTML code.<head>
: Contains metadata and elements like <title>
.<body>
: All visible content goes here (headers, images, paragraphs, etc.).<p> ... </p>
for paragraphs, <img>
for images.<tag>content</tag>
.<tag>
and closing </tag>
.<p><em> ... </em></p>
.<hr>
, <br>
).href
in <a>
for hyperlinks).
href
, id
, class
.<p>
, <div>
).<a>
, <span>
).<h1>
to <h6>
for titles, <h1>
being the most important.<strong>
for bold text, <em>
for italicized text.<ul>
and <li>
.<ol>
and <li>
.<a>
and href
attribute.
target="_blank"
.title="description"
.<img>
for adding images, requires src
and alt
attributes.width
and height
attributes for specifying dimensions.<a>
for image links.<video>
for adding videos, with src
attribute.controls
, autoplay
, loop
attributes to manage video controls.<header>
, <nav>
, <main>
, <article>
, <section>
, <footer>
.<form>
used to collect user input.
<input>
, <textarea>
, <button>
.<label>
.