-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
88 lines (83 loc) · 3.2 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>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About us/Contact</title>
<link rel="stylesheet" href="styles/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles/style-contact.css" type="text/css" media="screen" />
</head>
<body>
<header>
<div id="companysLogo">
<h1>Header, logo etc.</h1>
</div>
</header>
<nav id="mainNavigation">
<ul>
<li><a href="index.html">Home Page</a></li>
<li class="current"><a href="contact.html">About us/Contact</a></li>
<li><a href="rates.html">Rates</a></li>
<li><a href="prices.html">Our services/Prices</a></li>
<li><a href="#">Log in</a></li>
</ul>
</nav>
<section id="content">
<h2>About us/Contact</h2>
<p id="aboutUs">Cupcake ipsum dolor sit amet wypas topping halvah liquorice. Topping danish croissant tart powder. Marzipan jelly-o oat cake ice cream I love icing marshmallow tiramisu carrot cake. Caramels chocolate bar chocolate jujubes I love. Cheesecake fruitcake fruitcake souffle jelly beans. Bear claw cupcake chocolate bar gingerbread dessert carrot cake tart jujubes. Muffin cheesecake macaroon candy oat cake lemon drops cotton candy. Wafer sweet jujubes souffle apple pie. Gummi bears macaroon sweet carrot cake caramels chocolate bar sweet. Pie toffee bear claw danish chocolate.</p>
<iframe id="map" src="http://maps.google.com/?ie=UTF8&t=m&ll=50.075127,19.998336&spn=0.008263,0.012875&z=15&output=embed"></iframe>
<p>
<img src="images/house.png" style="float:left;margin-right:15px;" alt="House icon" />
ul. Kubusia Puchatka 10, 99-999 Nibylandia
</p>
<p>
<img src="images/phone.png" style="float:left;margin-right:15px;" alt="Phone icon" />
<a href="calto:+48111222333">+48 111 222 333</a>
</p>
<form>
<fieldset>
<h3>Send us a message:</h3>
<ol>
<li>
<label for=name>Name:</label>
<input id=name name=name type=text placeholder="First and last name" required autofocus>
</li>
<li>
<label for=email>E-mail:</label>
<input id=email name=email type=email placeholder="[email protected]" required>
</li>
<li>
<label for=subject>Subject:</label>
<input id=subject name=subject type=text placeholder="Subject...">
</li>
<li>
<label for=message>Message:</label>
<textarea id=message name=message rows=5 placeholder="Your message..." required></textarea>
</li>
</ol>
<button type=submit>Send message</button>
</fieldset>
</form>
</section>
<footer>
<nav id="footerNavigation">
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="contact.html">About us/Contact</a></li>
<li><a href="rates.html">Rates</a></li>
<li><a href="prices.html">Our services/Prices</a></li>
</ul>
</nav>
<nav id="socialFeedsNavigation">
<ul>
<li id="mail"><a href="#">e-mail</a></li>
<li id="rss"><a href="#">RSS</a></li>
<li id="twit"><a href="#">Twitter</a></li>
<li id="g"><a href="">Google+</a></li>
<li id="fb"><a href="#">Facebook</a></li>
<li id="li"><a href="#">LinkedIn</a></li>
</ul>
</nav>
<img src="images/carservice-logo.png" alt="CarService Engin Logo" id="carServiceEnginLogo" />
</footer>
</body>
</html>