blob: 63376472de435063fb6de2f0742445bc4cb3370d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<header>
<button id="reload">Reload</button>
<label>Weather City: <input id="city" value="Kofu, JP"></label>
<label><input type="checkbox" id="pause" checked> Auto-Update</label>
</header>
<div class="grid">
<div class="block" id="time"></div>
<div class="block" id="weather"></div>
<!-- Add more blocks -->
</div>
<script src="/static/script.js"></script>
</body>
</html>
|