forked from wncc/bug-squashing-contest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
161 lines (150 loc) · 5.65 KB
/
faq.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Website Demo 2</title>
<meta name= "viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="bootswatchedited.css">
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="bootstrap.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// fade in content.
$('#content-wrapper').fadeIn("slow");
});
</script>
<script type="text/javascript">
(function () {
if (typeof window.janrain !== 'object') window.janrain = {};
if (typeof window.janrain.settings !== 'object') window.janrain.settings = {};
janrain.settings.tokenUrl = 'REPLACE_WITH_TOKEN_URL';
function isReady() { janrain.ready = true; };
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", isReady, false);
} else {
window.attachEvent('onload', isReady);
}
var e = document.createElement('script');
e.type = 'text/javascript';
e.id = 'janrainAuthWidget';
if (document.location.protocol === 'https:') {
e.src = 'https://rpxnow.com/js/lib/akash93/engage.js';
} else {
e.src = 'http://widget-cdn.rpxnow.com/js/lib/akash93/engage.js';
}
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(e, s);
})();
</script>
<style type="text/css">
#content-wrapper
{
display:none;
}
</style>
</head>
<body>
<script type="text/javascript">
<!-- //--><![CDATA[//><!--
document.write('<div id="content-wrapper">');
//--><!]]>
</script>
<div id="div1">
<div class="well">
<div class="row-fluid">
<div class="span3">
<h1 align="center"> Contest Name</h1>
</div>
</div>
</div>
<div class= "container-fluid">
<div class="row-fluid">
<div class= "span9">
<div id="div2">
</div>
</div>
</div>
</div>
</div>
<div>
<div class="span3">
<ul class="nav nav-pills nav-stacked">
<li>
<a data-toggle="pill" onclick="window.location.href='WebsiteDemo2.htm'"> <h3>Home </h3></a>
</li>
<li class="active">
<a data-toggle="pill" onclick="window.location.href='faq.html'"> <h3>FAQ</h3> </a>
</li>
<li>
<a data-toggle="pill" onclick="window.location.href='contact.htm'"> <h3> Contact Us </h3></a>
</li>
</ul>
</div>
</div>
<div class="span12">
<div class="row-fluid" >
<div class="well">
<section id="About">
<div class="page-header">
<h1>FAQ</h1>
<hr />
</div>
<h3>Some text here</h3> <!--Add Text here for FAQ section-->
</section>
</div>
</div>
</div>
<section id="scoreboard">
<div >
<h2 align="center">Scoreboard</h2>
<div class= "row">
<div class="span 3"
<div class="well" id="div4">
<ul class="nav nav-pills">
<li class="active"> <a href="#Overall" data-toggle="pill"><h3>Overall</h3></a></li>
<li> <a href="#Monthly" data-toggle="tab"><h3>Monthly</h3></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="Overall">
<ul class="nav nav-tabs nav-stacked" id="Overall">
<table class="table">
<li><thead><tr><th><h4>Rank</h4></th> <th> <h4>Username</h4></th> <th><h4>Issues Resolved</h4></th> </tr></thead></li>
</table>
<table class="table">
<li>
<tr> <td>1</td> <td> <a href='#Profile1' data-toggle="tab" onclick="window.location='https://github.com'" > akash12</a></td> <td>5</td> </tr>
</li>
<li>
<tr> <td>2</td><td> <a href='#Profile2' data-toggle="tab" onclick="window.location='http://google.com'"> Bot</a></td> <td>3</td></tr></li>
</table>
</ul>
</div>
<div class="tab-pane" id="Monthly">
<ul class="nav nav-tabs nav-stacked" id="Monthly">
<table class="table">
<li><thead><tr><th><h4>Rank</h4></th> <th> <h4>Username</h4></th> <th><h4>Issues Resolved</h4></th> </tr></thead></li>
</table>
<table class="table">
<li>
<tr> <td>1</td> <td> <a href='#Profile1' data-toggle="tab" onclick="window.location='https://github.com'" > twit_bot</a></td> <td>2</td> </tr>
</li>
<li>
<tr> <td>2</td><td> <a href='#Profile2' data-toggle="tab" onclick="window.location='http://google.com'">Bot </a></td> <td>1</td></tr>
</li>
</table>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript">
<!-- //--><![CDATA[//><!--
document.write('</div><!-- content-wrapper -->');
//--><!]]>
</script>
</body>
</html>