0% found this document useful (0 votes)
12 views3 pages

HTML Tags

HTML Tags Activity

Uploaded by

Javairia Raza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views3 pages

HTML Tags

HTML Tags Activity

Uploaded by

Javairia Raza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

WEB PROGRAMMING

ASSIGNMENT 01
DEADLINE: April 30, 2024

Write down the properties and functionalities of the following HTML tags.
(Note: Do it on sheets & only hand-written assignment will be accepted.)

1. Document Structure and Metadata:


• <!DOCTYPE html>: HTML5 document type declaration.
• <html>
• <head>
• <meta charset="UTF-8">: Character encoding.
• <meta name="viewport" content="width=device-width, initial-
scale=1.0">: Responsive design meta.
• <title>
• <link rel="stylesheet" href="styles.css">: External stylesheet.
• <script src="script.js"></script>: External JavaScript file.
• <base href="https://example.com/">: Base URL for relative URLs.
• <body>
• <header>
• <nav>
• <main>
• <article>
• <section>
• <aside>
• <footer>
• <div>
2. Text Content:
• <h1> to <h6>
• <title>
• <a href=”….”>
• <img src=”…” alt=”…”>
• <p>
• <blockquote>
• <pre>
• <code>
• <ins>
• <abbr>
• <cite>
• <time datetime="YYYY-MM-DD">
3. Hyperlinks and Media:
• <a>
• <iframe>
• <object>
• <canvas>
• <img>
• <figure>
• <figcaption>
• <audio>
• <video>
• <source>
4. Lists:
• <ul>
• <li>
• <ol>
• <li>
• <dl>
• <dt>
• <dd>
• <listing>
5. Tables:
• <table>
• <caption>
• <thead>
• <tbody>
• <tfoot>
• <tr>
• <th>
• <td>
6. Forms:
• <form>
• <fieldset>
• <legend>
• <label>
• <input>
• <textarea>
• <select>
• <optgroup>
• <option>
• <button>
• <datalist>
• <output>
7. Interactive Elements:
• <details>
• <summary>
• <dialog>
8. Embedded Content:
• <iframe>
• <object>
• <embed>
• <canvas>
9. Semantic Markup:
• <mark>
• <strong>
• <font>
• <em>
• <small>
• <big>
• <s>
• <u>
• <cite>
• <q>
• <i>
• <b>
10. Web Components:
• <template>
• <slot>
• <custom-element>
• <script>
• <area>
• <button>
• <style>
• <link rel=”import”
• <shadow-root>
• <content>
• <dom-module>

You might also like