-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
64 lines (56 loc) · 2.13 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0" >
<title>FERRARI TESTAROSSA</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/stylesmin.css" media="screen and (min-width:421px) and (max-width:1025px)">
<link rel="stylesheet" href="css/stylesmin2.css" media="screen and (max-width:420px)">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="icon" href="images/favicon.png">
</head>
<body>
<header>
<h1 id="push1">Ferrari</h1>
<h2>Testarossa</h2>
<nav>
<i onclick="openNav()" class="fa fa-bars fa-2x"></i>
<ul id="mySidenav" class="sidenav">
<li><a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a></li>
<li><a href="index.html">HOME</a></li>
<li><a href="underthehood.html">UNDER THE HOOD</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li><a href="contactus.html">CONTACT US</a></li>
</ul>
</nav>
</header>
<main id="push2">
<h3>Contact Us</h3>
<img src="images/contact.jpg" alt=Testarossa>
<article>
<p><i class="fa fa-building fa-2x"></i><br> Address: Ferrari SpA, headquarters and factory:<br> Via Abetone Inferiore n. 4, I-41053 Maranello (MO) </p>
<p><i class="fa fa-phone fa-2x"></i><br> Phone: <a href="tel:+390536949111">+39 0536 949111</a></p>
<p><i class="fa fa-envelope fa-2x"></i><br><a onclick="email()">Click To Email Us</a> </p>
</article>
<aside>
<div id=email>
<form method="post" name="myemailform" action="mailto:[email protected]">
<p>Enter Name</p> <input type="text" name="name">
<br>
<p>Enter Email Address</p> <input type="text" name="email">
<br>
<p>Enter Message</p> <textarea rows="8" cols="30" name="message"></textarea>
<br>
<input type="submit" value="SEND">
</form>
</div>
</aside>
</main>
<footer id="push3">
<p><small>©Ferrari 2016</small></p>
</footer>
<script type="text/javascript" src="javascript/script.js"></script>
</body>
</html>