-
Notifications
You must be signed in to change notification settings - Fork 175
/
storeInput.html
40 lines (35 loc) · 1.31 KB
/
storeInput.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
<!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>Storing Inputs</title>
<link rel="stylesheet" href="storeInput.css">
<script defer src="storeInput.js"></script>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="input.html">Input Fields</a>
<a href="storeInput.html">Storing Input</a>
</div>
<div class="container">
<h2>Input Saver</h2>
<form id="input-form">
<label for="text">Text:</label>
<input type="text" class="text" required>
<label for="number">Number:</label>
<input type="number" class="number" required>
<label for="email">Email:</label>
<input type="email" class="email" required>
<label for="date">Date:</label>
<input type="date" class="date" required>
<button type="button">Submit</button>
</form>
<div class="results" id="results">
<h3>Saved Input:</h3>
</div>
</div>
</body>
</html>