Untitled

 avatar
unknown
plain_text
2 years ago
3.5 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script type=""></script>
  <title>Dog Grooming</title>
<link rel="stylesheet" href="style.css">
<script src="/simple-adaptive-slider/js/simple-adaptive-slider.js"></script>
</head>

<body>
  <header>
    <div class="container">
      <div class="logo">
        <a>Dog Grooming</a>
      </div>
      <nav>
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#">Services</a></li>
          <li><a href="#">Pricing</a></li>
          <li><a href="#">Contact Us</a></li>
        </ul>
      </nav>
    </div>
  </header>
  
  <section class="hero">
    <div class="container">
      <h1>We Keep Your Best Friend Looking and Feeling Great</h1>
      <p>At Dog Grooming, we know how important your furry friend is to you. That's why we offer professional grooming services that will keep your dog looking and feeling their best. Book an appointment with us today!</p>
      <a href="#" class="btn btn-primary">Book Now</a>
    </div>
  </section>
  
  

  <section class="services">
    <div class="container">
      <h2>Our Services</h2>
      <div class="grid">
        <div class="grid-item">
          <img src="/услуги/img1.jpg" alt="Service 1">
          <h3>Bath and Brush</h3>
          <p>Our basic grooming package includes a bath and brush out, ear cleaning, nail trim, and anal gland expression.</p>
          <a href="#" class="btn btn-secondary">Learn More</a>
        </div>
        <div class="grid-item">
          <img src="/услуги/стрижка.jpg" alt="Service 2">
          <h3>Haircut and Style</h3>
          <p>Our haircut and style package includes everything in the bath and brush package plus a haircut and styling.</p>
          <a href="#" class="btn btn-secondary">Learn More</a>
        </div>
        <div class="grid-item">
          <img src="/услуги/full groom.jpg" alt="Service 3">
          <h3>Full Groom</h3>
          <p>Our full grooming package includes everything in the haircut and style package plus teeth brushing and a bow or bandana.</p>
          <a href="#" class="btn btn-secondary">Learn More</a>
        </div>
      </div>
    </div>
  </section>
  
  <section class="pricing">
    <div class="container">
      <h2>Pricing</h2>
      <div class="grid">
        <div class="grid-item">
          <h3>Bath and Brush</h3>
          <p>$30</p>
        </div>
        <div class="grid-item">
          <h3>Haircut and Style</h3>
          <p>$50</p>
        </div>
        <div class="grid-item">
          <h3>Full Groom</h3>
          <p>$70</p>
        </div>
      </div>
    </div>
  </section>
  
<section id="contact">
    <div class="container">
      <h2 class="section-heading">Contact Us</h2>
      <div class="row">
        <div class="col-md-4">
          <i class="fas fa-map-marker-alt"></i>
          <p>Адрес: г. Минск, ул. Независимости, д. 1</p>
        </div>
        <div class="col-md-4">
          <i class="fas fa-phone"></i>
          <p>Телефон: +7 (495) 123-45-67</p>
        </div>
        <div class="col-md-4">
          <i class="fas fa-envelope"></i>
          <p>Email: info@doghaircut.ru</p>
        </div>
      </div>
    </div>
  </section>  

</html>