Web Design

web_design
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Company Web Design</title>
    <link rel="stylesheet" href="style.css">
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
</head>
<body>
    <header>
        <nav>
            <div class="logo">Company Logo</div>
            <ul class="menu">
                <li><a href="#">Home</a></li>
                <li><a href="#">About</a></li>
                <li><a href="#">Services</a></li>
                <li><a href="#">Contact</a></li>
            </ul>
        </nav>
    </header>
    <section class="hero">
        <h1>Welcome to Our Company Website</h1>
        <p>Bringing vintage vibes to the web</p>
        <button>Get Started</button>
    </section>
    <section class="features">
        <div class="feature">
            <i class="icon">★</i>
            <h2>Feature 1</h2>
            <p>Description of feature 1.</p>
        </div>
        <div class="feature">
            <i class="icon">★</i>
            <h2>Feature 2</h2>
            <p>Description of feature 2.</p>
        </div>
        <div class="feature">
            <i class="icon">★</i>
            <h2>Feature 3</h2>
            <p>Description of feature 3.</p>
        </div>
    </section>
    <section class="gallery">
        <div class="image">Image 1</div>
        <div class="image">Image 2</div>
        <div class="image">Image 3</div>
    </section>
    <section class="testimonials">
        <blockquote>
            <p>"Great service!"</p>
            <cite>- Customer 1</cite>
        </blockquote>
        <blockquote>
            <p>"Highly recommend!"</p>
            <cite>- Customer 2</cite>
        </blockquote>
    </section>
    <section class="contact">
        <form>
            <label for="name">Name:</label>
            <input type="text" id="name" name="name">
            <label for="email">Email:</label>
            <input type="email" id="email" name="email">
            <label for="message">Message:</label>
            <textarea id="message" name="message"></textarea>
            <button type="submit">Submit</button>
        </form>
    </section>
    <footer>
        <div class="social-media">Social Media Links</div>
        <p>© 2024  Company. All rights reserved.</p>
    </footer>
</body>
</html>

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #333;
  color: white;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-family: 'Georgia', serif;
}

.hero {
  background-color: #e0e0e0;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Georgia', serif;
}

.hero h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #b22222;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #2f4f4f;
}

.hero button {
  background-color: #b22222;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: 'Georgia', serif;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 2rem 1rem;
  background-color: #f4f4f4;
}

.feature {
  text-align: center;
  font-family: 'Georgia', serif;
}

.icon {
  font-size: 2rem;
  color: #b22222;
}

.gallery {
  display: flex;
  justify-content: space-around;
  padding: 2rem 1rem;
  background-color: #e0e0e0;
}

.image {
  background-color: #ddd;
  width: 30%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Georgia', serif;
}

.testimonials {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Georgia', serif;
}

blockquote {
  margin: 1rem 0;
  font-style: italic;
  color: #2f4f4f;
}

.contact {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #e0e0e0;
  font-family: 'Georgia', serif;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  font-family: 'Georgia', serif;
}

.social-media {
  margin-bottom: 1rem;
}

About Design

The design is a Company-themed web layout featuring a top navigation bar, a hero section with a headline and call-to-action button, feature sections with icons and descriptions, an image gallery, testimonials, a contact form, and a footer. It uses classic textures and fonts with muted colors like beige, teal, dark red, and black, along with decorative elements like stars and vintage badges to create an old-school aesthetic.