-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (52 loc) · 1.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>StumbleUpon Dashboard</title>
<style type="text/css">
#main {
padding: 10px;
background-color: #ffffff;
}
.logo-primary {
height : 66px;
width : 290px;
background-image: url(images/sulogo.png);
background-repeat:no-repeat;
}
header {
margin: 10px;
}
body,td,th {
font-family: Verdana, Geneva, sans-serif;
background-color: #f1f1ee;
}
.centered {
text-align: center;
}
.simpleList {
list-style-type: none;
margin : 0px;
}
#main .simpleList li {
margin-top: 10px;
}
</style>
</head>
<body>
<header>
<img src="images/sulogo.png" width="291" height="66" alt="StumbleUpon" />
<h2 class="centered">Code Challenge</h2>
</header>
<div id="main">
<ul class="simpleList">
<li><a href="ReadMe.html">Instructions & Read Me</a></li>
<li><a href="readData.php">Import Data</a></li>
<li><a href="display.php">Display Tag Data with PHP</a></li>
<li><a href="displayAjax.php">Display Tag Data using AJAX</a><br />
</li>
</ul>
</div>
<footer></footer>
</body>
</html>