-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.08 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>Pickleball Tournament Scoring</title>
<link rel="stylesheet" href="sources/court.css">
<link rel="stylesheet" href="sources/queue-styles.css">
<link rel="stylesheet" href="sources/touch-feedback.css">
<link rel="stylesheet" href="sources/offline-mode.css">
<link rel="stylesheet" href="sources/performance-optimizations.css">
</head>
<body>
<script src="sources/config.js"></script>
<script src="sources/demo-data.js"></script>
<script src="sources/performance-optimizer.js"></script>
<script src="sources/score-submission.js"></script>
<script src="sources/touch-feedback.js"></script>
<script src="sources/offline-manager.js"></script>
<script src="sources/app.js"></script>
</body>
</html>