Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Steve's PC Repair - Professional Computer Services</title>
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 'Arial', sans-serif;
- }
- body {
- background-color: #f5f5f5;
- color: #333;
- }
- /* Header Styles */
- header {
- background: #2c2c2c;
- padding: 1rem 0;
- position: sticky;
- top: 0;
- z-index: 1000;
- }
- .header-content {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 2rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .logo {
- color: #ff6b6b;
- font-size: 1.8rem;
- text-decoration: none;
- }
- nav {
- display: flex;
- gap: 2rem;
- }
- nav a {
- color: white;
- text-decoration: none;
- font-size: 1.1rem;
- transition: color 0.3s;
- }
- nav a:hover {
- color: #ff6b6b;
- }
- /* Hero Section */
- .hero {
- background: linear-gradient(45deg, #2c2c2c, #464646);
- color: white;
- text-align: center;
- padding: 15vh 2rem;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .hero h1 {
- font-size: 3.5rem;
- margin-bottom: 1rem;
- }
- .hero p {
- font-size: 1.2rem;
- max-width: 600px;
- margin-bottom: 2rem;
- }
- .hero-button {
- background: #ff6b6b;
- color: white;
- padding: 1rem 3rem;
- border: none;
- border-radius: 5px;
- font-size: 1.1rem;
- cursor: pointer;
- transition: transform 0.3s;
- }
- .hero-button:hover {
- transform: translateY(-3px);
- box-shadow: 0 5px 15px rgba(0,0,0,0.2);
- }
- /* Services Section */
- .services {
- max-width: 1200px;
- margin: 4rem auto;
- padding: 0 2rem;
- }
- .section-header {
- text-align: center;
- margin-bottom: 3rem;
- }
- .service-card {
- background: white;
- padding: 2rem;
- border-radius: 10px;
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- transition: transform 0.3s;
- margin-bottom: 2rem;
- }
- .service-card:hover {
- transform: translateY(-5px);
- }
- .service-icon {
- font-size: 2.5rem;
- color: #ff6b6b;
- margin-bottom: 1rem;
- }
- /* Contact Section */
- .contact {
- background: #f5f5f5;
- padding: 4rem 0;
- }
- .contact-form {
- max-width: 600px;
- margin: 0 auto;
- padding: 0 2rem;
- }
- .form-group {
- margin-bottom: 1.5rem;
- }
- .form-group label {
- display: block;
- margin-bottom: 0.5rem;
- color: #333;
- }
- .form-group input,
- .form-group textarea {
- width: 100%;
- padding: 0.8rem;
- border: 1px solid #ddd;
- border-radius: 5px;
- font-size: 1rem;
- }
- .submit-btn {
- background: #ff6b6b;
- color: white;
- padding: 1rem 3rem;
- border: none;
- border-radius: 5px;
- font-size: 1rem;
- cursor: pointer;
- transition: transform 0.3s;
- }
- .submit-btn:hover {
- transform: translateY(-2px);
- box-shadow: 0 3px 8px rgba(0,0,0,0.15);
- }
- /* Footer */
- footer {
- background: #2c2c2c;
- color: white;
- text-align: center;
- padding: 1rem 0;
- margin-top: 4rem;
- }
- /* Responsive Design */
- @media (max-width: 768px) {
- .hero h1 {
- font-size: 2.5rem;
- }
- .service-card {
- margin-bottom: 1.5rem;
- }
- }
- </style>
- </head>
- <body>
- <!-- Header -->
- <header>
- <div class="header-content">
- <a href="#" class="logo">Steve's PC Repair</a>
- <nav>
- <a href="#home">Home</a>
- <a href="#services">Services</a>
- <a href="#about">About</a>
- <a href="#contact">Contact</a>
- </nav>
- </div>
- </header>
- <!-- Hero Section -->
- <section class="hero" id="home">
- <h1>Professional Computer Repair Services</h1>
- <p>Fast, reliable, and affordable solutions for all your PC needs</p>
- <button class="hero-button">Schedule Service</button>
- </section>
- <!-- Services Section -->
- <section class="services" id="services">
- <div class="section-header">
- <h2>Our Services</h2>
- <p>We offer a wide range of computer repair and maintenance services</p>
- </div>
- <div class="service-cards">
- <div class="service-card">
- <div class="service-icon">⚙</div>
- <h3>Hardware Repair</h3>
- <p>Expert repair for motherboards, graphics cards, and more</p>
- </div>
- <div class="service-card">
- <div class="service-icon">🔎</div>
- <h3>Software Support</h3>
- <p>OS installation, virus removal, and system optimization</p>
- </div>
- <div class="service-card">
- <div class="service-icon">💻</div>
- <h3>Data Recovery</h3>
- <p>Recover lost data from crashed hard drives and storage devices</p>
- </div>
- </div>
- </section>
- <!-- Contact Section -->
- <section class="contact" id="contact">
- <div class="contact-form">
- <h2>Get in Touch</h2>
- <p>Have questions or need service? Fill out the form below</p>
- <form action="#" method="post">
- <div class="form-group">
- <label for="name">Name</label>
- <input type="text" id="name" name="name" required>
- </div>
- <div class="form-group">
- <label for="email">Email</label>
- <input type="email" id="email" name="email" required>
- </div>
- <div class="form-group">
- <label for="message">Message</label>
- <textarea id="message" name="message" rows="4" required></textarea>
- </div>
- <button type="submit" class="submit-btn">Send Message</button>
- </form>
- </div>
- </section>
- <!-- Footer -->
- <footer>
- <p>© 2023 Steve's PC Repair. All rights reserved.</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement