Week 2 Skating is my Hobby

Link to my work

While looking at the boilerplate in noticed the lang attribute and wondered about how many languages exist to label. Here’s a great list of … languages that have codes. The function of the boilerplate is to act as a basic skeletal structure that allows the content to be properly formatted. It creates a clear flow of the content and allows the information to be customized and organized. Below is an example of basic boilerplate code that I used to create my post.

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Roller Skating</title>
</head>

<body>
    <h1>Roller Skating</h1>
    <p>My hobby is Roller skating. While I dont have much experience, I enjoy riding around listening to great music.
        The playlist is one of the most important aspects of skating along with safety equipment and propper training.
    </p>
    <h2>Safe Skate Checklist</h2>
    <h3>Here are some of the most important tools to have your best skating session. Some things you might need include:
    </h3>
    <ul>
        <li>Rollerskates</li>
        <li>Kneepads</li>
        <li>Wrist Guards</li>
        <li>Hemlet</li>
        <li>Mouthguard</li>
        <li>Waterbottle</li>
        <li>A positive attitude</li>
    </ul>
    <img src="img/blue-skates.jpg" alt="">
</body>

</html>

The basic concept that helped me gain a simple understanding of boilerplate is thinking that, generally speaking, every bracket has an open and closed companion. The boilerplate is a declaration of HTML. The HTML element is the overseer which is why the rule of companionship doesn’t apply. HTML is the root element that basically states that all metadata that follows is HTML. It opens itself up to the data utilizing the Head which houses the Title. The Title states the purpose of the HTML. The Body houses the bulk of the information about the topic expressed by the Title that exists within the Head of the HTML. I often try and find ways to make the content I’m working on make sense to me. I hope this was helpful.

Leave a comment

Your email address will not be published. Required fields are marked *