-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
36 lines (30 loc) · 1.46 KB
/
contact.html
File metadata and controls
36 lines (30 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/contact.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="navbar">
<ul class="nav-links">
<li><a class="nav-link link1" href="index.html">Home</a></li>
<li><a class="nav-link link2" href="about.html">About</a></li>
<li><a class="nav-link link3 is-active" href="contact.html">Contact</a></li>
</ul>
</div>
<form action="" class="contact-form">
<p class="form-label">Full Name</p>
<input class="form-input" type="text" placeholder="Welcome to the QuHacks Workshop! What's your name?" name="FullName" required>
<p class="form-label">Email Address</p>
<input class="form-input" type="text" placeholder="Enter your Email" name="email" required>
<p class="form-label">Message</p>
<textarea id="form-textarea" name="form-textarea" id="" cols="30" rows="6"></textarea>
<button class="submit-btn">Submit</button>
</form>
</body>
</html>