-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 2.31 KB
/
index.html
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
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Form Local Storage</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css">
<link rel="stylesheet" href="stylesheets/main.css">
<link href="https://fonts.googleapis.com/css?family=Monoton|Roboto" rel="stylesheet">
</head>
<body>
<div class="title-container">
<h1 class="title">Local -- </h1>
<h1 class="title s">S</h1>
<h1 class="title t">T</h1>
<h1 class="title o">o</h1>
<h1 class="title r">r</h1>
<h1 class="title a">a</h1>
<h1 class="title g">g</h1>
<h1 class="title e">e</h1>
<h1 class="title"> -- Form</h1>
</div>
<div class="form-container">
<form class="form" data-form="info" action="">
<div class="name-field">
<input type="text" name="name" value="" data-input="name" placeholder="Name">
</div>
<br>
<div class="age-field">
<input type="number" name="age" value="" data-input="age" placeholder="Age">
</div>
<br>
<div class="shirt-field">
<label>Shirt Size:<br>
<input type="radio" name="hat-size" value="small" data-input="shirt-small">Small<br>
<input type="radio" name="hat-size" value="medium" data-input="shirt-medium">Medium<br>
<input type="radio" name="hat-size" value="large" data-input="shirt-large">Large
</label>
</div>
<br>
<div class="message-field">
<textarea name="biography" data-input="message" placeholder="Message"></textarea>
</div>
<br>
<div class="button-container">
<input class="submit" type="submit" data-type="submit" value="Submit">
<input class="reset" type="reset">
</div>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="scripts/main.js"></script>
</body>
</html>