blob: 39369ea72f295902bbf78aec374daafba0582c0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Aiden Woodruff" />
<meta name="description" content="Minesweeper Leaderboard" />
<meta name="keywords" content="minesweeper, leaderboard" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<link type="image/png" rel="shortcut icon" href="favicon.png" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Leaderboard</title>
<script type="application/javascript" src="leaders.js">
</script>
</head>
<body>
<h1>Leaderboard</h1>
<div class="leaderboard" id="content">
</div>
</body>
</html>
|