-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 2.74 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css\style\style.css">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid">
<header>
<a href="index.html">
<img src="Images\LogoResize.png" alt="Logo" id="logo">
</a>
</header>
<main>
<div class="menu-container">
<div class="dropdown">
<span class="menu-icon">☰</span>
<div class="dropdown-menu">
<a class="dropdown-item" href="publications.html">Publications</a>
<a class="dropdown-item" href="Resume.html">Resume</a>
<div class="dropdown">
<span class="dropdown-item-text">Portfolio</span>
<div class="dropdown-menu">
<a class="dropdown-item" href="thesis.html">Thesis</a>
<a class="dropdown-item" href="resevior_bank.html">Resevior Bank Heist</a>
<a class="dropdown-item" href="mARblemetldown.html">mARble Meltdown</a>
<!-- <a class="dropdown-item" href="a3g_vtex.html">Mini Cooper Visualization</a> -->
</div>
</div>
</div>
</div>
<span class="menu-text">Projects and Publications</span>
</div>
<h1>About Me</h1>
<p>My name is Viraj Patel. I am a recent Master's graduate in Comuter Science at Mississippi State University.
My areas of study are Computer Graphics, specifically with Augmented and Virtual Reality, and Artificial
Intelligence. I completed my thesis where I investigated driver performance, situation awareness,
and cognitive load at differnt levels of partial autonomy with dynamic task allocation. I compared
data I found 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 Thesis option in the dropdown menu above.</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>
</div>
</body>
</html>