-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrimming.html
43 lines (43 loc) · 1.09 KB
/
trimming.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
<html>
<head>
<title>Grass Bandits</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<div class="dropdown">
<button class="dropbtn"><b>Grass Bandits</b></button>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="index.html"><button class="dropbtn" href="#"><b>Home</b></button></a>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Services</button>
<div class="dropdown-content">
<a href="lawnmowing.html">Lawnmowing</a>
<a href="gardening.html">Gardening</a>
<a href="trimming.html">Trimming</a>
<a href="blowing.html">Blowing</a>
<a href="weeding.html">Weeding</a>
<a href="watering.html">Watering</a>
<a href="package.html">Full Package</a>
</div>
</div>
<div class="dropdown">
<a href="stands.html"><button class="dropbtn" href="#"><b>Stands</b></button></a>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="about.html"><button class="dropbtn" href="#"><b>About</b></button></a>
<div class="dropdown-content">
</div>
</div>
</nav>
<h1>Very cheap for just $5!</h1>
</body>
</html>