-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (42 loc) · 1.26 KB
/
contact.html
File metadata and controls
54 lines (42 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conjugator</title>
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href='index.html'><h1>Conjugator</h1></a>
<nav>
<a href='about.html'>About</a>
<a href='contact.html'>Contact</a>
<a href='learn.html'>Learn</a>
<a href='https://bw-conjugator.netlify.com/'>Log In</a>
</nav>
</header>
<div class='contact-image'></div>
<h2>Contact Us</h2>
<div class="contact">
<form>
<div class='fill-in'>
<div class='input'>
<label for="fullname">Full Name</label>
<input type="text" id="fullname" name='name'><br>
</div>
<div class="input">
<label for="email">Email</label>
<input type='text' id='email' name='email'><br>
</div>
<div class="input">
<label for="subject">Message</label>
<textarea id="subject" name="subject" style="height:200px"></textarea>
<input type="submit" value="Submit">
</div>
</div>
</form>
</div>
</body>
</html>