-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.09 KB
/
index.html
File metadata and controls
29 lines (28 loc) · 1.09 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
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.11.1/tachyons.min.css" integrity="sha512-d0v474klOFSF7qD9WDvyRxAvXaWSxCHDZdnBSZQjo8BpVr6vpjwAgqetpqkKP38DzlOzdVPaLVnzzW1Ba8wB9w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="main.js" defer></script>
<link rel="stylesheet" href="style.css">
<title>Form Example</title>
</head>
<body class="ma4 bg-light-pink">
<div id="main-form">
<h1>Here's a Form</h1>
<form action="" id="sneaker-form">
<div class="input-field">
<label for="sneaker-input">Sneaker Type</label>
<input type="text" name="sneaker-input" placeholder="Type of sneaker you want" id="sneaker-type" required></input>
</div>
<div class="input-field">
<input type="submit" value="Submit"></input>
</div>
</form>
</div>
</body>
</html>