Untitled

 avatar
unknown
plain_text
6 months ago
1.7 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Website</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background: #35424a;
            color: #ffffff;
            padding: 10px 20px;
            text-align: center;
        }
        nav {
            margin: 10px 0;
        }
        nav a {
            margin: 0 15px;
            color: #ffffff;
            text-decoration: none;
        }
        section {
            padding: 20px;
            background: #ffffff;
            margin: 10px;
        }
        footer {
            text-align: center;
            padding: 10px 0;
            background: #35424a;
            color: #ffffff;
            position: relative;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>
<body>

<header>
    <h1>Welcome to My Website</h1>
    <nav>
        <a href="#home">Home</a>
        <a href="#about">About</a>
        <a href="#contact">Contact</a>
    </nav>
</header>

<section id="home">
    <h2>Home</h2>
    <p>This is the homepage of my first website. I’m excited to share my journey!</p>
</section>

<section id="about">
    <h2>About</h2>
    <p>Here, you can learn more about me and my interests.</p>
</section>

<section id="contact">
    <h2>Contact</h2>
    <p>Feel free to reach out through my social media links or email!</p>
</section>

<footer>
    <p>&copy; 2024 My Website</p>
</footer>

</body>
</html>
Editor is loading...
Leave a Comment