-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
74 lines (62 loc) · 3.44 KB
/
contact.html
File metadata and controls
74 lines (62 loc) · 3.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Beginners Guide to FPV | Contact</title>
<meta name="description" content="A beginner's guide to the hobby of FPV Drones, with all the information you need to get started.">
<meta name="keywords" content="FPV, Drones, What is FPV?, FPV Drones, FPV Help">
<meta name="viewport" content="width=device-width, initial-scale+1.0">
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/ico" href="favicon.ico">
</head>
<body>
<div>
<header>
<h1><a href="home.html">Beginners Guide to FPV</a></h1>
</header>
<nav>
<ul>
<li><a href="whatisFPV.html">What are FPV Drones?</a></li>
<li><a href="styles.html">Styles of FPV</a></li>
<li><a href="physics.html">Physics & Control</a></li>
<li><a href="partsandequipment.html">Parts & Equipment</a></li>
<li><a href="costtimesaftey.html">Cost & Time</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main id="main">
<div>
<h2 style="text-align: center;">Contact us</h2>
<div class="form">
<p><a style="text-decoration:none" href="home.html"><strong><i>Beginners Guide to FPV</i></strong></a> is here to be a source for all beginners and people who want to learn about the hobby of FPV Drones.<br><br>
There is a lot to navigate when getting into FPV drones, as FPV is a complex and vast world with drones only being a portion of the FPV industry. <a style="text-decoration:none" href="home.html"><strong><i>Beginners Guide to FPV</i></strong></a> aims to lay out the basics of every aspect of FPV from your first day learning about it, to taking steps to begin the hobby yourself.<br><br>
<i>Please use the form to the right to give us any feedback, requests, or comments on anything to do with this website and FPV!</i>
</p>
<form action="https://webdevbasics.net/scripts/demo.php">
<label for="email">Your email:</label>
<input type="email" id="email" name="email" placeholder="Your email...">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname" placeholder="Your last name...">
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname" placeholder="Your last name...">
<label for="subject">Subject</label>
<textarea id="subject" name="subject" placeholder="Write something..." style="height:100px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</main>
<footer>
<div>
<h4>Beginners Guide to FPV</h4>
<p> A place for beginners to get a comprehensive look at the basics of the FPV hobby.</p>
</div>
<div style="text-align:right"><br><br>
<p>Copyright © Fall 2022 Elijah Butler - ASU CIS 300<br><br>
<a style="text-decoration: none; color: inherit;" href="mailto:epbutler@asu.edu">epbutler@asu.edu</a>
</p>
</div>
</footer>
</div>
</body>
</html>