HTML Code to copy and paste

    <!-- Headlines -->
    <h1>This is section 6</h1><br>
    <h3>This is section 6</h3><br>
    <h6>This is section 6</h6><br>
    


<!-- Paragraph --> <p>The diversity of aquatic plants in nature is vast</p>


<!-- Bullet List --> <ul> <li>aquatic plant 1</li> <li>aquatic plant 2</li> <li>aquatic plant 3</li> </ul>


<!-- Numbered List --> <ol> <li>Aquatic plant 1</li> <li>Aquatic plant 2</li> <li>Aquatic plant 3</li> </ol>


<!-- Display a line --> <br><br> <hr>


<!-- Display a red-colored line --> <hr color="red" width="800" size="10">


<!-- Notes --> Chapter about aquatic plants


<!-- Create a table --> <table border="1" width="20%" height="10%"> <tr><td>Roses</td><td>Tulips</td></tr> <tr><td>Small</td><td>Small</td></tr> <tr><td>Large</td><td>Large</td></tr> </table>


<!-- Link to another webpage --> <a href="aquaticplants.html">Go to aquatic plants page</a>


<!-- Create an anchor and go to a link on the same page --> <a href="#aquaticplants">Go to aquatic plant</a> <br> <br> <br> <br><a name="aquaticplants">Aquatic plant</a>


<!-- Display an image --> <img src="aquaticplant1.jpg" alt="aquatic plant 1" height="175" width="175"> or: <figure> <img src="aquaticplant1.png" height="175" width="175"> <figcaption>Image aquatic plant 1</figcaption> </figure>


<!-- Highlight text --> <mark>Small aquatic plants</mark>


<!-- Marquee Text --> <marquee behavior="scroll" direction="left"> <p><h1>Beautiful aquatic plants</h1></p> </marquee>

<!-- Images in marquee --> <marquee behavior="scroll" direction="left"> <img src="aquaticplant1.jpg" alt="aquatic plant 1" height="125" width="340"> <img src="aquaticplant2.jpg" alt="aquatic plant 2" height="125" width="340"> <img src="aquaticplant3.jpg" alt="aquatic plant 3" height="125" width="340"> </marquee>


<!-- Display a video --> <figure> <figcaption>Video about small aquatic plants</figcaption> <iframe width="420" height="315" src="aquaticplants.mp4" allowfullscreen></iframe> </figure>


<!-- Display a YouTube video --> <a href="https://youtube.com/watch?v=RauoKaHFR2k">Watch the video</a>


<!-- Link to other webpages --> <a href="https://facebook.com">Link to Facebook</a> <a href="https://instagram.com">To Instagram</a> <a href="https://snapchat.com">To Snapchat</a> <a href="https://facebook.com/pagelocation">To Facebook page</a>


<!-- Contact form --> <form name="contactform" method="post" action="process.php"> Name:<br> <input type="text" name="name" value=""><br><br> Email:<br> <input type="text" name="email" value=""><br><br> Description:<br> <textarea rows="3" cols="30" name="Questionremark"></textarea> <br><br> <input type="submit" value="Send"> <input type="reset" value="Reset"> </form>