-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
79 lines (63 loc) · 3.57 KB
/
about.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
<!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>
<link rel="stylesheet" href="font-awesome.css">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<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="About">
<div class="container-fluid">
<div class="row content">
<div class="col-md-8 sidenav">
<span class ="category">About</span>
<img id="about_img" src="./images/tree_pruning-1.jpg" width="89%" alt="An image of a tree"/>
<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
</div>
<div class="col-md-4">
<div class="request">
<span>THIS IS TO REQUEST A FORM THIS IS TO REQUEST A FORM THIS IS TO REQUEST A FORM</span>
<p class="pitch">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt</p>
<button class="make_request" onclick="window.location = './contact.html'" > Request an Appointment</button>
</div>
<h1>Services</h1>
<button class ="services_button" onclick="window.location = './services/treeser.html'"> <i class="fa fa-tree fa-2x" aria-hidden="true"><span>Tree Services</span></i> </button>
<button class ="services_button" onclick="window.location = './services/lawn.html'"> <i class="fa fa-leaf fa-2x" aria-hidden="true"><span>Lawn Maintnance</span></i> </button>
<button class ="services_button" onclick="window.location = './services/houseser.html'"> <i class="fa fa-home fa-2x" aria-hidden="true"><span>Home Services</span></i></button>
</div>
</div>
</div>
</div><br>
<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>