-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
85 lines (73 loc) · 3.6 KB
/
contact.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
<!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-4.7.0/css/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="Contact">
<div class="container-fluid">
<div class="row content">
<div class="col-md-8 sidenav">
<p class="category">Contact</p>
<div class = "request_form">
<p style="padding-top:5px;">Request an Appointment</p>
<form>
Name:<br><input type="text" name="firstname" ><br>
Address:<br><input type="text" name="address" ><br>
E-mail:<br><input type="email" name="email"><br>
Telephone:<br><input type="text" name="usrtel"><br>
Message: <br><input type ="text" name ="msg"><br>
<br>
<input type="submit" value="Submit">
</form>
</div>
</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>
<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>