-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 774 Bytes
/
index.html
File metadata and controls
32 lines (31 loc) · 774 Bytes
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
<html>
<head>
<style>
.videos {
display: grid;
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 0.5rem;
padding: 0.5rem;
border: 1px solid navy;
}
.video {
min-height: 6rem;
border: 0.5px solid black;
}
</style>
</head>
<h1>PyLattice - Ethan Knox</h1>
<h2>Results Gallery</h2>
<div class="videos">
<div class="video">
<video width="100%" height="auto" autoplay loop muted playsinline>
<source src="./resources/pylattice_n9_stable_example.mp4" type="video/mp4"/>
</video>
</div>
<div class="video">
<video width="100%" height="auto" autoplay loop muted playsinline>
<source src="./resources/pylattice_n9_example.mp4" type="video/mp4"/>
</video>
</div>
</div>
</html>