forked from electriciteam/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
60 lines (37 loc) · 1.3 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
<!doctype html>
<html>
<meta charset="utf-8" />
<title>STROMSACK - Contact</title>
<meta name="description" content="description" />
<meta name="author" content="author" />
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/style.css" type="text/css" rel="stylesheet" />
<script src="jquery-3.2.1.js" type="text/javascript"></script>
<script src="js/script.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<body>
<div id='container'>
<header>
<p id="logo"><img src="img/StromSackblue.svg" id="logoblue">STROMSACK</p>
<a href="index.html"><img src="img/notewz.jpg" id="ewz" /></a>
</header>
<main>
<h2>Contact</h2>
<p>For enquiries by mail, please write to the following address:<br>
äwz enquiries<br>
Musterstrasse 123<br>
8001 Zürich<br> </p>
<p>For enquiries by e-mail, please write to the following e-mail address:<br>
<a href="mailto:enquiries@aewz.ch">enquiries@aewz.ch</a></p>
<p>For enquiries by phone, please call the following number:<br>
+41 (0)44 123 45 67</p>
</main>
<footer>
<a href="index.html">Home</a> <a>Contact</a> <a href="about.html">About</a> <a href="faq.html">FAQ</a>
</footer>
</div>
</body>
</html>