-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (49 loc) · 2.04 KB
/
contact.html
File metadata and controls
51 lines (49 loc) · 2.04 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
<!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>codebook.dev - Contact</title>
<link href='https://fonts.googleapis.com/css?family=JetBrains Mono' rel='stylesheet'>
<link rel="stylesheet" href="src/css/main.css">
<script type="module" src="src/js/main.js"></script>
</head>
<body class="contact.html support-container">
<div class="nav">
<ul>
<li class="links"><a href="index.html">Home</a></li>
<li class="links"><a href="about.html">About</a></li>
<li class="links"><a class="accent" href="support-portal.html">Support</a></li>
</ul>
</div>
<div class="header">
<h1 class="color support-header">Contact</h1>
</div>
<div class="support-info">
<p style="width: 40vw; color:white;">We're here to help. Get in contact with a <span
class="color">codebook.dev</span> agent by filling out the form below.
</p>
</div>
<div>
<form class="support-form" id="contact" method="POST">
<h3 class="color">Name() {</h3>
<input id="name" type="text" placeholder="Theodore Roosevelt..">
<h3 class="color">Problem() {</h3>
<select id="mySelect">
<option value="select">Select a Problem</option>
<option value="General Inquiry">General Inquiry</option>
<option value="Technical Support">Technical Support</option>
<option value="Report a Bug">Report a Bug</option>
</select>
<h3 class="color">Body() {</h3>
<textarea class="support-body-box" placeholder="There seems to be a problem with my code!"
id="problem"></textarea><br><br>
<button id="submit">Submit</button>
</form>
</div>
<footer style="bottom: 0;">
<p>© 2022-23 <span class="color">codebook.dev</span></p>
</footer>
</body>
</html>