-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.34 KB
/
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
39
40
41
42
43
44
45
<!doctype html>
<html>
<head>
<title>Blaseball line score generator</title>
<meta charset="utf-8">
<script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap" rel="stylesheet" crossorigin="anonymous">
<link href="style.css?1be66ee" rel="stylesheet">
</head>
<body>
<header>
<form>
Generate line scores for
<dl>
<dt>season:</dt>
<dd><input type="text" id="season"></dd>
<dt>day:</dt>
<dd><input type="text" id="day"></dd>
</dl>
<input type="submit" id="go" value="go">
</form>
<p class="note">click for tournament games: <a id="coffee-cup" href="#">coffee cup</a></p>
</header>
<template id="template-linescore">
<div class="game">
<table>
<colgroup></colgroup>
<tr class="head"></tr>
<tr class="away"></tr>
<tr class="home"></tr>
<tr class="foot"><td>
<strong>WP:</strong> <span class="wp"></span>  
<strong>LP:</strong> <span class="lp"></span>
</td></tr>
</table>
<strong>Alt text:</strong> <input></input>
</div>
</template>
<script src="script.js"></script>
</body>
</html>