-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.11 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<!--
Need a visual blank slate?
Remove all code in `styles.css`!
-->
<link rel="stylesheet" href="styles.css" />
<script type="module" src="script.js"></script>
</head>
<body>
<!-- <nav>
<a href="/" aria-current="page">Home</a>
<a href="/page2.html">Other page</a>
</nav> -->
<main>
<form
action="https://www.greatfrontend.com/api/questions/contact-form"
method="post"
>
<label for="name">Name</label>
<br />
<input type="text" name="name" required/>
<br />
<br />
<label for="email">Email</label>
<br />
<input type="email" name="email" required/>
<br />
<br />
<label for="message">Message</label>
<br />
<textarea name="message" required></textarea>
<br />
<button type="submit">Submit</button>
</form>
</main>
</body>
</html>