HTML-3

task
 avatar
user_9408108
html
5 months ago
1.1 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Third Task</title>
</head>
<body>
    <!-- Page Title -->
    <div class="title">
        <h1>My Blog</h1>
        <ul>
            <li><a href="/index-1.html">Article 1</a></li>
            <li><a href="/index-2.html">Article 2</a></li>
        </ul>
    </div>

    <!-- HTMl Intro -->
    <div class="">
        <h1>Understanding HTML</h1>
        <p>HTMl is the standard markup language for creating web  pages.</p>

        <h3>Tags:</h3>
        <ul>
            <li>HTML</li>
            <li>Web Devlopment</li>
            <li>Markup Language</li>
        </ul>
    </div>

    <!-- CSS Intro -->
    <div>
        <h1>Getting Started with CSS</h1>
        <p>CSS is used  to style the HTML elements.</p>
        <h3>Tags:</h3>
        <ul>
            <li>CSS</li>
            <li>Styling</li>
            <li>Web Design</li>
        </ul>
        <p>&copy;2024 My Blog. All rights reserved.</p>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment