forked from altitudelabs/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
38 lines (31 loc) · 1.17 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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Awesome Bands</title>
<meta name="description" content="A leaderboard of the most awesome bands of all time." />
<meta name="author" content="Mass Relevance" />
<meta name="viewport" content="width=device-width" />
<base target="_blank" />
<!-- CSS -->
<link href="./css/style.css" rel="stylesheet" />
</head>
<body>
<div class="container" id="container1">
<div class="title">
<img id="titleImg" src="css/images/title.png"/>
</div> <!--title-->
<div class="content">
<table id="leaderboard">
<tr><td class="bandName">AAA</td><td class="bandCount"><span class="countNumber">111</span> Mentions</td></tr>
<tr><td class="bandName">aaa</td><td class="bandCount"><span class="countNumber">111</span> Mentions</td></tr>
</table>
</div> <!--content-->
</div> <!--container-->
<!-- JS -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="./js/lib.js"></script>
<script src="./js/script.js"></script>
</body>
</html>