-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
77 lines (65 loc) · 2.27 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Shivraj Rath">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CBSE X and XII - Result Analyzer</title>
<meta name="description" content="CBSE result analysis for class X and XII">
<link rel="shortcut icon" href="http://cbse.nic.in/newsite/images/cbseLogo.gif">
<link rel="stylesheet" type="text/css" href="./app.css">
</head>
<body>
<h1>CBSE X and XII Result Analyser</h1>
<br>
<div class="ad">[ AD ] Vist <a href="https://cookspan.com" target="_blank">https://cookspan.com</a> to learn simple, tasty and healthy indian recipes.</div>
<br>
<h3>
<a href="http://twitter.com/shivrajrath" target="_blank">Twitter</a>
<a href="https://github.com/ShivrajRath/cbsera12" target="_blank">Github</a>
</h3>
<p>
Paste the content of the <a download href="08306.txt" target="_blank">result text file</a> in the box below. Click on <code><strong>ANALYZE</strong></code> button
to do the result analysis and download the result to excel file.
</p>
<p>
<textarea id="text-input"></textarea>
<button type="button" id="btn-analyze">ANALYZE</button>
</p>
<!--ADVERTISEMENT-->
<hr>
<div class="ad center">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-7679046374812881";
/* CBSEResultAnalysis */
google_ad_slot = "0926840105";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
</div> <hr>
<div id="resultTables" class="hide">
<div id="schoolTable">
<h4 class="tableCaption">School result</h4>
<table></table>
</div>
<div id="subjectTable">
<h4 class="tableCaption">Subject wise result</h4>
<table></table>
</div>
<div id="studentTable">
<h4 class="tableCaption">Student wise result</h4>
<table></table>
</div>
</div>
<hr class="mt35">
<h5>
This app is best supported on Chrome, firefox, IE11+.
</h5>
<script data-main="main" src="require.min.js"></script>
</body>
</html>