-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
143 lines (125 loc) · 3.36 KB
/
test.html
File metadata and controls
143 lines (125 loc) · 3.36 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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: black;
color: white;
}
header {
text-align: center;
padding: 20px;
}
#logo {
max-width: 200px;
height: auto;
}
main {
margin: 20px auto;
max-width: 800px;
padding: 0 20px;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #4c4c4c;
}
th, td {
padding: 10px;
text-align: left;
border: 1px solid white;
}
th {
background-color: #454545;
font-weight: bold;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #3a3a3a;
min-width: 160px;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #2f2f2f;
}
footer {
background-color: #333;
padding: 20px;
text-align: center;
}
.social-icons {
display: flex;
justify-content: center;
align-items: center;
}
.social-icons a {
margin: 0 10px;
}
.social-icons img {
width: 40px;
height: 40px;
}
</style>
</head>
<body>
<header>
<img src="Images\LogoResize.png" alt="Logo" id="logo">
<h2>Links</h2>
<table>
<tr>
<th>Pages</th>
</tr>
<tr>
<td><a href="page1.html">Publications</a></td>
</tr>
<tr>
<td>
<div class="dropdown">
<span>Portfolio</span>
<div class="dropdown-content">
<a href="page2a.html">Page 2A</a>
<a href="page2b.html">Page 2B</a>
<a href="page2c.html">Page 2C</a>
</div>
</div>
</td>
</tr>
</table>
</header>
<main>
<h1>About Me</h1>
<p>My name is Viraj Patel. I am a Master's student in Comuter Science at Mississippi State University.
My areas of study are Computer Graphics, specifically with Augmented and Virtual Reality, and Artificial
Intelligence. I am working on my thesis where I investigate driver performance, situation awareness,
and cognitive load at differnt levels of partial autonomy with dynamic task allocation. I am comparing
data I find in my research to data collected from a similar study done in a web-based desktop driving
simulator. More details of this can be found under the Portfolio tab below.</p>
</main>
<footer>
<div class="social-icons">
<a href="https://www.linkedin.com/in/viraj-patel-aa5a85238/"><img src="Images\LinkedIn_logo_initials.png" alt="LinkedIn"></a>
<a href="https://github.com/vrp56"><img src="Images\github.png" alt="GitHub"></a>
<a href="https://twitter.com/CausticCurry"><img src="Images\twitter.png" alt="Twitter"></a>
</div>
</footer>
</body>
</html>