-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
executable file
·89 lines (71 loc) · 3.39 KB
/
services.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NICODOGO</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="dog,housesitting,daycare,dogsitting">
<meta name="description" content="A website for Nicole's dog-sitting services.">
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/style.css">
<script src="jquery-3.3.1.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<header>
<div class="logo">
<h1><a href="index.html"><img src="images/logo.png" alt="Logo for NICODOGO"></a></h1>
</div>
<nav>
<ul>
<li><a href="index.html"><img src="images/home.jpg" alt="pic of bone"></a></li>
<li><a href="about.html"><img src="images/about.jpg" alt="pic of bone"></a></li>
<li><a href="services.html"><img src="images/services.jpg" alt="pic of bone"></a></li>
<li><a href="reviews.php"><img src="images/reviews.jpg" alt="pic of bone"></a></li>
<li><a href="contact.php"><img src="images/contact.jpg" alt="pic of bone"></a></li>
</ul>
</nav>
</header>
<main id="service">
<div id="service_menu">
<h2>Types of Services</h2>
<div id="three_service">
<div class="box">
<div class="photo"><img src="images/house-sit.jpg"></div>
<h3>Dog-Sitting</h3>
<p>I will take care of your dog and your house, for instance when you are away for three days on business trip.</p>
<p><span class="price">$50</span><span class="unit"> per night</span></p>
</div>
<div class="box">
<div class="photo"><img src="images/walk.jpg"></div>
<h3>Dog-Walk</h3>
<p>I will take your dog for a walk whenever you need. If my schedule works, I'll pick up your dog right after I receive your request.</p>
<p><span class="price">$20</span><span class="unit"> per walk (30 min)</span></p>
</div>
<div class="box">
<div class="photo"><img src="images/drop-in-visit.jpg"></div>
<h3>Drop-In Visit</h3>
<p>I will visit your house to check up on your dog a couple of times a day, for instance, to feed your dog.</p>
<p><span class="price">$15</span><span class="unit"> per visit (30 min)</span></p>
</div>
</div>
</div>
<!-- <div id="map">
<h2>Pawpular Area</h2>
<hr>
<p id="detailMap">This is just a general idea of the area of my service. If you have any questions, say your house is just outside the highlighted area, don't hesitate to contact me.</p>
<div class="iframe_container"><iframe class="resp_iframe" src="https://www.google.com/maps/d/embed?mid=1u1LUjbGreZpKsEjsqSDIKtT47IceAgQJ"></iframe></div>
</div> -->
</main>
<footer>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="services.html">SERVICES</a></li>
<li><a href="reviews.php">REVIEWS</a></li>
<li><a href="contact.php">CONTACT</a></li>
</ul>
<small>Copyright © 2018 NICO DOGO, All Rights Reserved.</small>
</footer>
</body>
</html>