-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathresults.html
More file actions
37 lines (34 loc) · 922 Bytes
/
results.html
File metadata and controls
37 lines (34 loc) · 922 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TestMe_lite results!</title>
<link rel="stylesheet" href="css/bootstrap.css"/>
<!--[if IE 7]>
<script>
// Attach additional stylesheets and JS for ie.
//TODO: json3 not working??
document.createStyleSheet('/css/ie7.css');
var json3 = document.createElement('script');
json3.type = 'text/javascript';
json3.href = '/vendor/json3.js';
json3.appendChild(document.getElementsByTagName('head')[0]);
</script>
<![endif]-->
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/bootstrap.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<h1>You made it to the results page!</h1>
</div>
<div class="well">
<p>On this page you will:</p>
<ul>
<li>Tastefully display the selections the user made .</li>
<li>Fix the json3 and css includes for IE7.</li>
</ul>
</div>
</body>
</html>