Pro HTML
Pro HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Creative Website</title>
<style>
/* Reset default margin and padding */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
nav a {
text-decoration: none;
color: #333;
margin: 0 10px;
}
.contact-form label {
display: block;
margin-bottom: 10px;
}
.contact-form input[type="text"],
.contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}
.contact-form button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
.contact-form button:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<div class="logo">Your Beautiful Logo</div>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact Us</a>
</nav>
</header>
<div class="about">
<h1>About Us</h1>
<p>Your captivating description goes here...</p>
</div>
<div class="contact-form">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter your name">
<label for="email">Email:</label>
<input type="text" id="email" placeholder="Enter your email">
<label for="message">Message:</label>
<textarea id="message" rows="4" placeholder="Your message"></textarea>
<button type="submit">Send</button>
</form>
</div>
</body>
</html>