-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (56 loc) · 2.15 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<title>Document</title>
</head>
<body>
<div class="location-container">
<div class="location">
<h2>LOCATION & CONTACT </h2>
<form action="http://maps.google.com/maps" method="get" target="_blank">
<input type="submit" value="Get directions" id="get-direction" />
<label for="saddr"></label>
<input type="text" name="saddr" placeholder="enter your current location" id="saddr" />
<input type="hidden" name="daddr" value="Maitama, Abuja" />
</form>
<img class="image" src="./images/map.png">
</div>
<div>
<section class="address">
<h2>Address</h2>
<p>
Lorem ipsum dolor, sit amet, <br>
consectetur adipisicing elit. <br>
Lorem ipsum dolor, sit amet, <br>
consectetur adipisicing elit.
</p>
</section>
<section class="contact">
<h2>Contact Details</h2>
<img src="./images/phone.svg" class="phonesvg" >
<img src="./images/email.svg" class="emailsvg">
</section>
<section class="email">
<form>
<h2>Email Address</h2>
<label for="Email-Address"></Address></label>
<input type="text" name="Email-Address" id="Email-Address" placeholder="Email Address">
</form>
</section>
</div>
<div class="message">
<form class="form" action="">
<label for="your-message">Leave a Message For Us</label>
<br>
<textarea id="message" name="message" rows="10" cols="30" placeholder="Message"></textarea>
</form>
</div>
<div>
<input type="submit" value="SEND MESSAGE" id="send-message">
</div>
</div>
</body>
</html>