-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
67 lines (57 loc) · 2.03 KB
/
Copy pathcontact.html
File metadata and controls
67 lines (57 loc) · 2.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<link rel="stylesheet" type="text/css" href="styles/contact.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Heebo');
</style>
</head>
<body>
<div class="topNav">
<a href="index.html">Home</a>
<a href="productList.html">Products</a>
<a href="gallery.html">Gallery</a>
<a href="#">Contact</a>
<a href="shoppingCart.html" id="theShoppingCart"><img src="images/shoppingCart.jpg" width="15"> Shopping Cart</a>
</div>
<div id="heading">
<h2>Contact Us</h2>
</div>
<div id="emailing">
<p>Email us at: <a href="mailto:medinatoci@hotmail.com?Subject=Hello">medinatoci@hotmail.com</a></p>
<p>Phone no. <span id="theNumber">+389520216465</span></p>
<p>Address: <span id="theAddress1">SomeAddress nr.18,</span>
<br><span id="theAddress2">10000 Skopje</span>
<br><span id="theAddress3">Macedonia</span></p>
</div>
<div id="contactForm">
<form>
<label for="name">Name</label>
<input id="name" type="text">
</form>
<form>
<label for="email">Email</label>
<input id="email" type="email">
</form>
<form id="formField">
<label id="theComment" for="comment">Comment</label>
<textarea id="comment" cols="96" rows="10"></textarea>
</form>
<form>
<button id="theButton">Send</button>
</form>
</div>
<div id="theMap">
<iframe width="90%" height="300px" frameborder="0"
scrolling="no" marginheight="0" marginwidth="0"
src="http://maps.google.com/maps?hl=en&ie=UTF8&ll=37.0625,-95.677068&spn=56.506174,79.013672&t=m&z=4&output=embed">
</iframe>
</div>
<div id="footer">
<p>© Medina Tochi</p>
</div>
</body>
</html>