-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (100 loc) · 2.73 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<title>Stack Inspection Spring 2023</title>
<style>
h1 {
text-align: center;
}
h2 {
text-align: center;
}
/* Style the tabs */
.tab {
display: flex;
justify-content: space-evenly;
overflow: hidden;
background-color: #b70c0c;
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
color: #ffffff;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #929292;
border-top: none;
}
table {
border-spacing: 50px; /* set the spacing between columns */
}
</style>
</head>
<body>
<h1>Stack Inspection</h1>
<div class="tab">
<button
class="tablinks"
onclick="openTab('./index.html')"
id="defaultOpen"
>
Home
</button>
<button class="tablinks" onclick="openTab('./projectDescription.html')">
Project Description
</button>
<button class="tablinks" onclick="openTab('./practicalProblems.html')">
Problems & Solutions
</button>
<button class="tablinks" onclick="openTab('./hardware.html')">
Hardware
</button>
<button class="tablinks" onclick="openTab('./software.html')">
Software
</button>
</div>
<script>
function openTab(pageName) {
window.open(pageName, "_self");
}
</script>
<h2>Home</h2>
<h3>Team</h3>
<p>
Chandler Beiler: cbeiler@ncsu.edu<br />
Anupam Mijar: aamijar@ncsu.edu<br />
Scott Burnett: srburne2@ncsu.edu <br />
Roshan Raju: rrraju@ncsu.edu<br />
Sreedhar Ramesh: sramesh6@ncsu.edu<br />
</p>
<h3>Final Project Report</h3>
<div class="row bg-white pl-2 pb-4 justify-content-md-center">
<embed src="./pdf/finalReport.pdf" width="500" height="700" />
</div>
<h3>Final Video</h3>
<div class="row bg-white pl-2 pb-4 justify-content-md-center">
<embed src="./video/finalVideo.mp4" width="700" height="500" />
</div>
<h3>Full Demo Video</h3>
<div class="row bg-white pl-2 pb-4 justify-content-md-center">
<embed src="./video/demoVideo.mp4" width="700" height="500" />
</div>
</body>
</html>