-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
88 lines (88 loc) · 2.92 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
86
87
88
<!doctype html>
<!-- Website template by freewebsitetemplates.com -->
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact - Frozen Yogurt Shop</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" type="text/css" href="css/mobile.css">
<script src="js/mobile.js" type="text/javascript"></script>
</head>
<body>
<div id="page">
<div id="header">
<div>
<a href="index.html" class="logo"><img src="images/logo.png" alt=""></a>
<ul id="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li class="menu">
<a href="about.html">About</a>
<ul class="primary">
<li>
<a href="product.html">Product</a>
</li>
</ul>
</li>
<li class="menu">
<a href="blog.html">Blog</a>
<ul class="secondary">
<li>
<a href="singlepost.html">Single post</a>
</li>
</ul>
</li>
<li class="selected">
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
<div id="body" class="contact">
<div class="header">
<div>
<h1>Contact</h1>
</div>
</div>
<div class="body">
<div>
<div>
<img src="images/check-in.png" alt="">
<h1>UNIT 0123 , ABC BUILDING, BUSSINESS PARK</h1>
<p>If you're having problems editing this website template, then don't hesitate to ask for help on the Forums.</p>
</div>
</div>
</div>
<div class="footer">
<div class="contact">
<h1>INQUIRY FORM</h1>
<form action="index.html">
<input type="text" name="Name" value="Name" onblur="this.value=!this.value?'Name':this.value;" onfocus="this.select()" onclick="this.value='';">
<input type="text" name="Email" value="Email" onblur="this.value=!this.value?'Email':this.value;" onfocus="this.select()" onclick="this.value='';">
<input type="text" name="Subject" value="Subject" onblur="this.value=!this.value?'Subject':this.value;" onfocus="this.select()" onclick="this.value='';">
<textarea name="meassage" cols="50" rows="7">Share your thoughts</textarea>
<input type="submit" value="Send" id="submit">
</form>
</div>
<div class="section">
<h1>WE’D LOVE TO HEAR FROM YOU.</h1>
<p>If you're having problems editing this website template, then don't hesitate to ask for help on the Forums.</p>
</div>
</div>
</div>
<div id="footer">
<div>
<div class="connect">
<a href="http://freewebsitetemplates.com/go/facebook/" class="facebook">facebook</a>
<a href="http://freewebsitetemplates.com/go/twitter/" class="twitter">twitter</a>
<a href="http://freewebsitetemplates.com/go/googleplus/" class="googleplus">googleplus</a>
<a href="http://pinterest.com/fwtemplates/" class="pinterest">pinterest</a>
</div>
<p>© 2023 Freeeze. All Rights Reserved.</p>
</div>
</div>
</div>
</body>
</html>