-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
51 lines (42 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Adrian's Tree Service </title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container">
<h3>Example Page Header</h3>
</div>
<div class = "tab">
<a href="./main_page.html" class="tablinks"> Home </a>
<a href="./about.html" class="tablinks"> About </a>
<div class="dropdown">
<button onclick="myFunction()" class="tablinks" id="dropbtn">Services</button>
<div id="myDropdown" class="dropdown-content">
<a href="./services/treeser.html">Tree Services </a>
<a href="./services/lawn.html">Lawn Maintnance</a>
<a href="./services/houseser.html">Home Services </a>
</div>
</div>
<a href="./gallery.html" class="tablinks"> Gallery </a>
<a href="./testimonials.html" class="tablinks"> Testimonials </a>
<a href="./contact.html" class="tablinks"> Contact </a>
</div>
<div id="Services">
<span class="category">This is services.</span>
</div>
<footer>
<h1>For More Information or to Request an Appointment call 650.716.6092</h1><br><br>
<span>coded and designed by Vanessa Tostado</span>
</footer>
<script src="main.js"></script>
</body>
</html>