forked from sshepard/TestMe_NG
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
executable file
·42 lines (39 loc) · 1.4 KB
/
results.html
File metadata and controls
executable file
·42 lines (39 loc) · 1.4 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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TestMe results!</title>
<link rel="stylesheet" href="css/bootstrap.css"/>
<!-- because no matter how great the temptation, you should actively avoid in-page and inline styling like the plague -->
<link rel="stylesheet" href='css/test.css'/>
<!--[if IE 7]>
<script>
// Attach additional stylesheets and JS for ie.
//NOTE: I have no IE7 to test this with - I simply fixed the javascript to not use 'href' as an attribute, and variablized the head call
//With MS about to officially stop supporting IE<10 - it's probably not worth harping on these things. Or let's go the full monty
//Make this script work on Netscape 3.01 Gold (even though stylesheets don't)!
document.createStyleSheet('css/ie7.css');
var head = document.getElementsByTagName('head')[0];
var json3 = document.createElement('script');
json3.type = 'text/javascript';
json3.src = '/vendor/json3.js';
head.appendChild(json3);
</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>