-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactForm.html
More file actions
62 lines (57 loc) · 1.8 KB
/
contactForm.html
File metadata and controls
62 lines (57 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Form</title>
<link href="./index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="main-container">
<!-- navbar -->
<div class="sub-container">
<header>
<div class="nav_bar">
<h1>Contact Form</h1>
</div>
</header>
<div class="mainContainer">
<!-- form for if a person would like to contact -->
<div class="subscription">
<h2>Send Us A Message!</h2>
<form class="form">
<!-- name input -->
<div class="formRow">
<label for="fname">Full Name:</label><br>
<input class="textInput" type="text" id="fname" name="fname"><br>
</div>
<!-- email input -->
<div class="formRow">
<label for="emailAdd">Email address:</label><br>
<input class="textInput" type="text" id="emailAdd" name="emailAdd"><br>
</div>
<!-- comments input -->
<div class="formRow">
<label for="comments">Your message:</label><br>
<textarea class="textInput-comments" type="text" id="comments" name="comments"></textarea>
<br>
</div>
<!-- submit button -->
<div class="submitRow">
<button type="submit" onclick="onContactForm(this)" value="contact-form">Submit</button>
</div>
</form>
</div>
</div>
</div>
<!-- footer -->
<footer>
<div class=" copyright">
© 2022 JB
</div>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>