-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
49 lines (44 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</nav>
<br>
<img src="images/revisedarduinoimagepngkey.png">
<h3>If you have any questions please contact us in the form below or shoot
us a quick email.
</h3>
<p>we will respond in 2-3 business days.</p>
<form>
<label>Name:</label><br>
<input type="text"> <br>
<label>Email:</label><br>
<input type="text"><br>
<label>Phone Number:</label><br>
<input type="text"> <br>
<label>Description:</label><br>
<input type="text" class="longDescription"> <br>
<input type="submit" value="Submit">
</form>
<h4>
Email us here: <br>
<a href="mailto:[email protected]">[email protected]</a> <br>
Call us here <br>
<a href="tel:8007006000">+1 800-700-6000</a>
</h4>
<p>Thanks for reaching out!</p>
</body>
</html>