Untitled

 avatar
unknown
plain_text
a year ago
2.4 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>NISHCHAL PANDIT</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
        }
        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px 0;
        }
        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 0 20px;
        }
        img {
            max-width: 40%;
            height: auto;
            border-radius: 50%;
            margin-bottom: 20px;
        }
        h1, h2, h3 {
            margin-bottom: 10px;
        }
        form {
            margin-top: 20px;
        }
        input[type="text"], textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
        }
        input[type="submit"] {
            background-color: #333;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
        }
        input[type="submit"]:hover {
            background-color: #555;
        }
    </style>
</head>
<body>
    <header>
        <h1>Nishchal Pandit</h1>
        <p>Hello welcome to my website</p>
    </header>
    <div class="container">
        <img src="C:\Users\User\Desktop\New folder (3)\Instagram\IMG_20210101_230441_257.jpg" alt="Your Name">
        <h2>Education History</h2>
        <ul>
            <li>6 to 12 from SOS,2078</li>
            <li>Nursery to 6 from Mount seb school,2072</li>
            <li>Bachelors in csit at Madan bhandari memorial college,running</li>
        </ul>
        <h2>Interests and Hobbies</h2>
        <p>My hobbies are coding,futsal,cooking,playing games,binge watching movies,working out etc.</p>
        <h2>Contact Form</h2>
        <form action="#" method="post">
            <input type="text" name="name" placeholder="Your Name" required><br>
            <input type="email" name="email" placeholder="Your Email" required><br>
            <textarea name="message" placeholder="Your Message" rows="4" required></textarea><br>
            <input type="submit" value="Send Message">
        </form>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment