-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathresearch_areas.html
More file actions
175 lines (139 loc) · 5.01 KB
/
Copy pathresearch_areas.html
File metadata and controls
175 lines (139 loc) · 5.01 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
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
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" lang="en">
<head>
<title>Courses</title>
<link rel="stylesheet" type="text/css" href="/styles/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/assets/favicon.ico">
<link rel="manifest" href="/assets/site.webmanifest">
<link rel="shortcut icon" href="/assets/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/assets/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Courses"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="/assets/logotype_me.png"/>
<meta name="twitter:card" content="summary_large_image">
<style>h1 {text-align: center;}
h2 {text-align: center;}
.inp{
width: 300px;
}
</style>
</head>
<body>
<!--<span id = "spn">Dark Mode</span>-->
<header id="header">
<a href="/index.html"><img src="/assets/iit.png" width="65" height="65" class="center"></a>
</header>
<br><br><br><br>
<div id="container" style="color: white;">
<nav>
<ul>
<li><a>Home</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a href="/index.html">Home</a></li>
</ul>
<li><a>Curriculum</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a href="/course.html">Courses</a></li>
<li><a href="/course_btech.html">B.Tech</a></li>
<li><a href="/course_mtech.html">M.Tech</a></li>
</ul>
<li><a>Research Areas</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a href="/research_areas.html">Research Areas</a></li>
</ul>
<li><a>Projects</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a href="/projects.html">Projects</a></li>
</ul>
<li><a>People</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a href="/course_btech.html">Faculty</a></li>
<li><a href="/course_mtech.html">Students</a></li>
</ul>
<li><a>Contact</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a>Contact</a></li>
</ul>
<li><a>About</a>
<!--Fridt Tier Drop Down-->
<ul>
<li><a href="/about.html">About</a></li>
</ul>
</ul>
</nav>
</div>
<br>
<br>
<br>
<div>
</div>
<div id="spn">
<h1>Research Areas </h1>
<h2>Data Science & Artificial Intelligence</h2>
<hr>
<br><br><br>
<style>
</style>
<p >
<br>
Research is our main area of interest. And them main strength of IIT Bhilai lies in Computer Vision, Natural Language Processing, <br>
Blockchain etc.
<br><br><br>
<br>
<!--Also, if that thing in the URL is annoying, just click on it to pause it.-->
<br>
<br>
<p style="text-align: center;"><a href="/course.html"> Curriculum</a> / <a href="/research_areas.html">Research Areas</a> / <a href="/projects.html">Projects</a> / <a href="/about.html">About</a></p>
<br>
<p style="text-align:center;"><a href="https://github.com/HS1VT"><img src="/assets/git.png" height="50" width = "50"></a>
<br> Copyright © Vishesh Thakur
</p>
</div>
</div>
<script type="text/javascript" src="/scripts/uni.js"></script>
<script>
myFunction()
if (document.readyState !== 'loading'){
uni();
} else {
document.addEventListener('DOMContentLoaded', uni);
}
document.getElementById("myUL").display="block";
function myFunction() {
if (!document.getElementById("myInput").value){
document.getElementById("myUL").style.display="none";
}
else{
document.getElementById("myUL").style.display="block";
}
var input, filter, ul, li, a, i, txtValue;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
ul = document.getElementById("myUL");
li = ul.getElementsByTagName("li");
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByTagName("a")[0];
txtValue = a.textContent || a.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "";
} else {
li[i].style.display = "none";
}
}
}
</script>
<script type="text/javascript" src="/scripts/darkMode.js"></script>
<script src="//instant.page/1.1.0" type="module" integrity="sha384-EwBObn5QAxP8f09iemwAJljc+sU+eUXeL9vSBw1eNmVarwhKk2F9vBEpaN9rsrtp"></script>
</body>
</html>