-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (92 loc) · 4.86 KB
/
Copy pathindex.html
File metadata and controls
108 lines (92 loc) · 4.86 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="./css/main.css">
<title>Ts Eamcet - Pdf Filterer</title>
</head>
<body>
<div class="partition_1">
<div class="side_arrow" onclick="ShowSidebar()">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-chevron-down" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z" />
</svg>
</div>
<div id="main_heading">
<div>
<a href="./pdfs/TSEAMCET_2020_LASTRANKS_FIRSTPHASE.pdf">
<span class="main_heading_text">
TS Eamcet 2020 First Phase ( M.P.C )
</span><br>
</a>
</div>
</div>
</div>
<div class="drop_down">
<div class="menu_options"> <a href="./html_pages/final_phase_2020.html">2020 Final Phase</a> </div>
<div class="menu_options"> <a href="./html_pages/final_phase_2019.html">2019 Final Phase</a> </div>
<div class="menu_options"> <a href="./html_pages/first_phase_2019.html">2019 First Phase</a> </div>
<div class="menu_options"> <a href="./codes_and_names/codes_of_2020.html">Codes_of_2020</a> </div>
<div class="menu_options"> <a href="./codes_and_names/codes_of_2019.html">Codes_of_2019</a> </div>
<div class="menu_options"> <a href="#" onclick="help()" id="instructions">Show_instructions</a> </div>
</div>
<div class="partition_2">
<span class="container-fluid" id="tab">
<form>
<label for="Inst Code">Inst Code<br><input tabindex="1" id="collegeid" type="text"
placeholder="bvri,cbit" size="15"></label>
<label for="Dist Code">Dist Code<br><input tabindex="2" id="place" type="text" placeholder="med,rr"
size="15"></label>
<label for="Branch">Branch Code<br><input tabindex="3" id="course" type="text" placeholder="cse,ece"
size="15"></label>
<label for="Caste">Caste <br><input tabindex="4" id="caste" type="text" placeholder="bc-d"
size="15"></label>
<label for="Coed/girls">COED/Girls<br><input tabindex="5" id="coed_girls" type="text"
placeholder="girls" size="15"></label>
<label for="affiliation">Affiliation<br><input tabindex="6" id="affiliation" type="text"
placeholder="jntuh,ou" size="15"></label>
<label for="college_type">college_type<br><input tabindex="7" id="college_type" type="text"
placeholder="pvt,gov" size="15"></label>
<label for="lowest_cutoff">range_min<br><input tabindex="8" id="lowest_cutoff" type="text"
placeholder="0" size="15"></label>
<label for="highest_cutoff">range_max<br><input tabindex="9" id="highest_cutoff" type="text"
placeholder="99999" size="15"></label>
<label for="Boys"><input tabindex="10" id="boys" type="radio" name="gender" value="Boys"> <span
class="gender_text"> Boy </span> </label>
<label for="Girls"><input tabindex="11" id="girls" type="radio" name="gender" value="Girls"> <span
class="gender_text"> Girl </span> </label>
</form>
<button tabindex="12" onclick="sortion()">Submit</button>
</span>
<div id="main" class="container-fluid">
<table class="content-table">
<thead>
<tr>
<th>Inst_Code</th>
<th> Inst_Name </th>
<th> Place</th>
<th> Dist_Code</th>
<th> COED/Girls </th>
<th> College_Type </th>
<th> Branch_Code </th>
<th> Branch_Name</th>
<th> Caste </th>
<th> Cutoff </th>
<th> Affiliation</th>
<th>Tuition_Fee</th>
</tr>
</thead>
<tbody id="tablebody">
</tbody>
</table>
</div>
</div>
<div class="container-fluid" id="help"> </div>
<script type=module src="./js/javascripts/first_phase_2020.js"></script>
</body>
</html>