-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
106 lines (92 loc) · 3.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<head> <!-- Head contents part of gridsystem. Stylesheets my own -->
<title>Wonderful World of Baking</title>
<meta charset="utf-8">
<meta name="description" content="This website is about baking. It has a few recipes, a converter and a list of substitutions">
<meta name="keywords" content="baking, recipes, converter, substitutions">
<meta name="author" content="Edel Smullen using the grid by www.grahamrobertsonmiller.co.uk">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheets -->
<link rel="stylesheet" href="css+js/style.css" media="all">
<link rel="stylesheet" href="css+js/col.css" media="all">
<link href='https://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css' />
<link href='https://fonts.googleapis.com/css?family=Petrona' rel='stylesheet' type='text/css' />
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="css+js/script.js"></script>
</head>
<body>
<div class="wrapper">
<div class="section group">
<div class="col span_12_of_12">
<header>Wonderful World of Baking <span class="tablettrigger"><img src="images/logo.jpg" alt="hamburger"></span></header>
<!-- the tablettrigger class is for the navigation on tablet version-->
</div>
</div>
<div class="section group">
<span class="trigger"><img src="images/menulogo.jpg" alt="hamburger"></span> <!-- Trigger class for mobile navigation-->
<nav class="col span_12_of_12">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="basics.html">Basics</a></li>
<li><a href="converter.html">Converter</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="substitutions.html">Substitutions</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="breadcrumb">
<a href="index.html">Home</a> >
Contact
</div>
<div class="section group content">
<div class="col span_12_of_12 spacer">
</div>
</div>
<div class="section group">
<div class="col span_1_of_12">
</div>
<div class="col span_3_of_12" id="contact_text">
<p>If you wish to contact us, with queries or suggestions, please fill in the form and we will get back to you as soon as possible.</p>
</div>
<div class="col span_1_of_12">
</div>
<div class="col span_5_of_12" id="contact">
<table id="form">
<tr><th colspan="2">Contact Form</th>
</tr>
<form action="mailto:c09370323@mydit.ie" method="post">
<tr><td colspan="2">Name*</td>
</tr>
<tr><td colspan="2"><input type="text" name="name" id="name" maxlength="30" placeholder=" Your Name" required></td>
</tr>
<tr><td colspan="2">E-mail*</td>
</tr>
<tr><td colspan="2"><input type="text" name="email" id="email" maxlength="30" placeholder=" Your email" required></td>
</tr>
<tr><td colspan="2">Query*</td>
</tr>
<tr><td colspan="2"><textarea rows="10" cols="50" placeholder=" Enter your text here...."reguired></textarea></td>
</tr>
<tr><td><input type="button" value="Submit" id="submit"></td><td><br></td>
</tr>
</form>
</table>
</div>
</div>
<div class="spacer">
<br><br>
</div>
<div class="section group">
<footer class="col span_12_of_12">
<b>© 2015 Edel Smullen</b>
</footer>
</div>
</div>
</body>
</html>