# Activity 18: Research HTML

### **Instructions:**

1. **Basic HTML Elements**:
    
    * Write an **HTML document** and use the following:
        
        * **Headings**: Add headings like &lt;h1&gt;, &lt;h2&gt;, &lt;h3&gt;, etc.
            
        * **Paragraph**: Use &lt;p&gt; for text blocks.
            
        * **Lists**:
            
            * **Unordered List**: Use &lt;ul&gt; for bullet points.
                
            * **Ordered List**: Use &lt;ol&gt; for numbered lists.
                
        * **Table**: Add a table with &lt;table&gt;, &lt;tr&gt;, &lt;th&gt;, and &lt;td&gt;.
            
        * **Form**
            
        * **Div**
            
        * Images
            
        * canvas
            
        * video
            
        * youtube
            
        * drag and drop
            
2. **Semantic HTML**:
    
    * Use **meaningful tags** like &lt;header&gt;, &lt;footer&gt;, &lt;article&gt;, &lt;section&gt;, and &lt;nav&gt; to organize your web page.
        
3. ### **Practice**
    

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011809272/f8b948ca-3985-4e57-8f19-590f2554d02a.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011830787/ac989244-cd40-439e-befd-e5a994cfd853.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011848240/21e035d5-e4e3-4435-af06-af503487cfe2.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011869222/5d26004e-130b-4b92-adf3-5ada44325480.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011884807/c5bf9acc-f0ee-494b-9f56-65c706cf17be.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011900398/75f8e36b-8c1d-442c-821f-836b194e6afe.png align="center")

**CODE:**

```plaintext
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Basic HTML Practice</title>
</head>
<body>
<!-- Headings -->
<h1>Welcome to My Simple Biography</h1>
<h2>Hello, I am Cristina Coronel</h2>
<h3>---------------------------------------------------------------------</h3>


<p>By viewing this web page, you'll get to know me just a little bit more</p>


<h3>Hobbies</h3>
<ul>
  <li>I love to cook</li>
  <li>Playtime with my cats</li>
  <li>Sleep(what's sleep though?)</li>
</ul>


<h3>My Everyday Routine</h3>
<ol>
  <li>Get up and go to the bathroom</li>
  <li>Wash my face</li>
  <li>Feed my fat cat</li>
  <li>Eat lunch</li>
  <li>Do activities</li>
  <li>Eat dinner</li>
  <li>Take night bath</li>
  <li>Proceeds to do activities till i get tired at midnight</li>
</ol>


<h3>My Cats</h3>
<table border="1">
  <tr>
    <th>Boys</th>
    <th>Girls</th>
  </tr>
  <tr>
    <td>Jared</td>
    <td>Novula</td>
  </tr>
  <tr>
    <td>Mucho</td>
    <td>Potchi</td>
  </tr>
</table>


<h3>Contact Form</h3>
<form action="/submit" method="post">
  <label for="name">Name:</label><br>
  <input type="text" id="name" name="name"><br><br>
  <label for="email">Email:</label><br>
  <input type="email" id="email" name="email"><br><br>
  <input type="submit" value="Submit">
</form>


<div>
  <p>-----------</p>
</div>


<h3>My Favorite Motto is "kung hindi ka para saken, mamatay nalang tayong lahat" </h3>
<img src="https://ih1.redbubble.net/image.5494548271.0695/st,small,507x507-pad,600x600,f8f8f8.webp" alt="Sample Image">


<h3>Canvas Drawing</h3>
<canvas id="myCanvas" width="200" height="100"></canvas>



<h3>Sample Video</h3>
<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>


<h3>YouTube Video</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Iw5kg_LlGhg?autoplay=1" frameborder="0" allowfullscreen></iframe>


<h3>Drag and Drop Example</h3>
<div id="dropZone" style="width:200px; height:200px; border:1px solid #000;">
  Drop files here
</div>


<header>
  <h2>Header Section</h2>
</header>

<nav>
  <p>This is the navigation area.</p>
</nav>

<section>
  <article>
    <h3>Biography</h3>
  </article>
</section>

<footer>
  <p>&copy; 2024 Biography</p>
</footer>
</body>
</html>
```

### **OUTPUT**

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011740721/68afa659-ed7c-4f82-8f7a-fafc9bee9dbd.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011963323/4346f219-9ed3-405b-801a-ab1dc6326f24.png align="center")

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1728011991248/48ddab2b-2c26-4724-870d-a4be8217e88b.png align="center")

### **GITHUB LINK:**

[https://github.com/mischiii22/HTML.git](https://github.com/mischiii22/HTML.git)
