-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (30 loc) · 946 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
<!DOCTYPE html>
<html lang="en" >
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Feedback form</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="chomp.css">
<script src="chomp.js"></script>
</head>
<body>
<div class="form" id="form">
<h3>Feed me suggestions</h3>
<form name="myform">
<div class="form-group">
<label>What do you think?</label>
<input type="text" style="width: 300px" class="chomp" />
</div>
<div class="form-group">
<label>Another input</label>
<input type="text" style="width: 150px" class="chomp" />
</div>
</form>
</div>
</div>
<body>
</body>
</body>
</html>