-
Notifications
You must be signed in to change notification settings - Fork 0
/
connect.html
81 lines (61 loc) · 2.33 KB
/
connect.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Our Project</title>
<link href=' https://cdnjs.com/libraries/bulma' type='text/css' rel='stylesheet'></link>
<link href='assets/css/index.css' type='text/css' rel='stylesheet'></link>
<script type="text/javascript">
</script>
</head>
<body>
<div>
<div class="header">
<img src="assets/images/logo.jpg" alt="LOGO"/ class="logo">
<a href="#default" class="name">MaRa Home Services</a>
<div class="header-right">
<a href="index.html">Welcome</a>
<a href="About.html">About</a>
<a href="services.html">Services</a>
<a href="connect.html">Connect<hr></a>
</div>
</div>
<button id="price" onclick="myFunction()"><a href="pricing.html">Prices</a></button>
<div class="form1">
<form action="" name="myForm" onsubmit="return(validate());">
<fieldset>
<legend><span class="number">1</span> Resgistration</legend>
<input type="text" name="Name" placeholder="Your Name *">
<input type="email" name="Email" placeholder="Your Email *">
<input type="tele" placeholder="Telephone *"></input>
<label for="job">Services:</label>
<select id="job" name="services">
<optgroup label="select your service">
<option value=""></option>
<option value="Cleaning">Cleaning</option>
<option value="Maid">Maid</option>
<option value="Plumbing">Plumbing</option>
<option value="Electricals">Electricals</option>
<option value="Painting">Painting</option>
<option value="Handyman">Handyman</option>
</optgroup>
</select>
</fieldset>
<fieldset>
<legend><span class="number">2</span> Description</legend>
<textarea name="field3" placeholder="What you want..."></textarea>
</fieldset>
<input type="submit" value="Submit" />
</form>
</div>
</div>
<footer>
<a href="mailto:[email protected]"><img src="assets/images/twit.jpg" alt="" class="icons" ></a>
<a href="mailto:[email protected]"><img src="assets/images/mail.png" alt="" class="icons"></a>
<a href="mailto:[email protected]"><img src="assets/images/ff.png" alt="" class="icons"></a>
<a href="mailto:[email protected]"><img src="assets/images/link.png" alt="" class="icons"></a>
<p><b>Copyright © MaRa Home Services Contact Us : +233 205192729</b></p>
</footer>
<script src='assets/js/index.js'></script>
</body>
</html>