-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 897 Bytes
/
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
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./styles.css" />
<script src="/script.js"></script>
</head>
<body>
<div id="bigTitle">TEST Heading</div>
<form id="mainForm">
<ul>
<li>
<label for="name">Name:</label>
<input id="name "type="text">
</li>
<li>
<label for="datePicker">Date:</label>
<input id="datePicker" type="date">
</li>
<li>
<label for="acceptBox">Accept?</label>
<input id="acceptBox" type="checkbox">
</li>
<li>
<label for="message">Leave a message:</label>
<input id="message" type="text area">
</li>
<li class="button">
<button type="submit">Send it!</button>
</li>
</ul>
</form>
</body>
</html>