-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathheader.html
More file actions
executable file
·87 lines (74 loc) · 2.86 KB
/
header.html
File metadata and controls
executable file
·87 lines (74 loc) · 2.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
<!DOCTYPE HTML>
<html>
<head>
<title>interactive Data Visualization Lab</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" href="images/iDVLlogo/V2.png"/>
<!-- modernizr enables HTML5 elements and feature detects -->
<script type="text/javascript" src="js/modernizr-1.5.min.js"></script>
<script type="text/javascript" src="js/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(function() {
// this will get the full URL at the address bar
var url = window.location.href;
// passes on every "a" tag
$(".topmenu a").each(function() {
// checks if its the same on the address bar
if (url == (this.href)) {
$(this).closest("li").addClass("selected");
}
});
});
</script>
</head>
<body>
<div id="main">
<header>
<div id="logo">
<div id="logo_text">
<h1 >
<a href="index.html"> <img height="48px" src="images/iDVLlogo/iDVL.png" href="index.php" alt="logo" title="logo"/></a>
<a href="index.html"><span class="logo_colour"> interactive Data Visualization Lab</span>
<a href="http://www.depts.ttu.edu/cs/"><img height="48px" src="images/TTUlogo.png" alt="logo" title="logo"/></a>
</a>
</h1>
</div>
</div>
<nav>
<ul class="sf-menu" id="nav">
<li id="homeTab">
<a href="index.html">
Home </a>
</li >
<li id="peopleTab">
<a href="people.html">
People </a>
</li>
<li id="pubTab">
<a href="publications.html">
Publications </a>
</li>
<li id="researchTab">
<a href="researchProjects.html">
Research Projects </a>
</li>
<li id="confTab">
<a href="conferences.html">
Conferences </a>
</li>
<li id="cfpTab">
<a href="grants.html">
CFPs </a>
</li>
<li id="presentTab">
<a href="presentation.html">
Presentation </a>
</li>
</ul>
</nav>
</header>
</div>
</body>
</html>