-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
58 lines (56 loc) · 1.54 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
<!doctype html>
<html>
<head>
<title>Mark Bonjoc</title>
<link href="css/mark.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="servicebody">
<div class="center">
<div class="lightgray">
<nav>
<a href="index.html">Home</a>
<a href="aboutus.html">AboutUs</a>
<a href="products.html">Products</a>
<a href="services.html">Services</a>
<a href="faqs.html">FAQs</a>
<a href="contactus.html">ContactUs</a></nav>
<div>
<div class="containerser">
<img src="css/repair.jpg" alt="Avatar" class="image" style="width:200%">
<div class="middle">
<div class="text">Troubleshoot and repair any damages inside your house. Our
service provide 100% success and we make sure that you are satisfied with our service.</div>
</div>
</div>
<form action="lamprecht.php" method="post">
<h4>Information<h4>
Name: <input type="text" name="fname"></br>
Address: <input type="text" name="address">
<div>
<div>
<label for="service"><h4>Services: </h4></label>
</div>
<div>
<select name="service" id="service" required>
<option value="300" selected>Electricity Faulty</option>
<option value="150" >Heat and A/C</option>
<option value="600" >Full house check and repair</option>
</select>
</div>
<p id="price"></p>
<input type="submit" value="Submit"/>
</div>
</form>
</div>
</div>
</div>
<script>
var drop = document.getElementById("service");
var price = document.getElementById("price");
drop.onchange = function() {
price.innerHTML = "$" + drop.value;
}
</script>
</body>
</html>