-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext.html
More file actions
28 lines (28 loc) · 787 Bytes
/
text.html
File metadata and controls
28 lines (28 loc) · 787 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Who let the cats out?</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/text.css" />
</head>
<body>
<section data-role="background"></section>
<section data-role="foreground">
<h1>Too hot for my cat?</h1>
<form>
<label for="cities">We live in:</label>
<select></select>
<button disabled>
Getting city data. One sec.
</button>
<output data-showing="not_showing">
</output>
</form>
</section>
<script src="scripts/config.js"></script>
<script src="scripts/jquery_3.3.1.min.js"></script>
<script src="scripts/helper.js"></script>
<script src="scripts/text.js"></script>
</body>
</html>