-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgallery.html
executable file
·72 lines (49 loc) · 1.85 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- put google analytics script here -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Example Project Page</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="styles/minimal.css" rel="stylesheet">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-nav">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item active"><a href="gallery.html">Gallery</a></li>
<li class="nav-item"><a href="https://github.com/monakhova/example/">Code</a></li>
<li class="nav-item"><a href="https://arxiv.org/">Paper</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<h1><b>Gallery of Reconstructions</b></h1>
Below are some example results.
<br />
<br />
<h2><b>Embed Images or GIFs of Results</b></h2>
[Description]
<div class="row" style="margin-top:0px">
<img class="float-left" src="resources/waterbear.gif" style="width:700px">
</div>
<h2><b>Embed Videos of Results</b></h2>
<div class="row">
<iframe width="660" height="415"
src="https://player.vimeo.com/video/664414611?h=facd6106ff&badge=0&autopause=0&player_id=0&app_id=58479"
width="2160" height="1440" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" >
</iframe>
</div>
</div>
</body>
</html>