-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 978 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="IRVLUTD, IRVL, Intelligent Robotics and Vision Lab, The University of Texas at Dallas">
<meta name="description" content="Homepage of the Intelligent Robotics and Vision Lab, The University of Texas at Dallas">
<meta name="author" content="Jishnu Jaykumar P">
<title>Redirect to IRVL's website</title>
<style>
.center{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
}
</style>
</head>
<body>
<span class="center">Redirecting to <b>https://labs.utdallas.edu/irvl</b></span>
</body>
<script>
window.onload = function() {
location.href = "https://labs.utdallas.edu/irvl";
}
</script>
</html>