-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.html
169 lines (154 loc) · 7.14 KB
/
outputs.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Building Codes Lead the Way</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/c43edc6366.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler ml-auto" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#products">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="support_tool.html">Tool</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Related Sites</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
<header>
<div class="container-fluid my-3 logos">
<div class="row px-3 d-flex align-items-center">
<div class="col-md-6">
<div class="logo-wrapper flex-fill">
<a href="index.html">
<img src="img/logo.PNG" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="offset-md-2 col-md-4">
<div class="logo-wrapper flex-fill">
<img src="img/logos_grid.png" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</header>
<div class="container-fluid">
<div class="row">
<div class="col-12 p-0">
<img src=" img/header-photo-long.jpg" alt="" class="w-100">
<small>Photo courtesy of Scott Peake</small>
</div>
</div>
</div>
<div class="container outputs">
<h1 class="pt-5">At Building Level</h1>
<div class="row py-3">
<div class="col-md">
<h2 class="output-label">Animation of tornado impact without adopting UBC</h2>
<video class="video embed-responsive" autoplay muted loop>
<source src="img/left_animation.mp4" type="video/mp4" class="embed-responsive-item">
</video>
<small>Will be replaced later</small>
</div>
<div class="col-md">
<h2 class="output-label">Animation of tornado impact with adopting UBC</h2>
<video class="video embed-responsive" autoplay muted loop>
<source src="img/right_animation.mp4" type="video/mp4" class="embed-responsive-item">
</video>
<small>Will be replaced later</small>
</div>
</div>
<h1 class="pt-5">At Community Level</h1>
<div class="row py-3">
<div class="col-md">
<video class="video embed-responsive" autoplay muted loop>
<source src="img/Left.mp4" type="video/mp4" class="embed-responsive-item">
</video>
<small>Will be replaced later</small>
</div>
<div class="col-md">
<video class="video embed-responsive" autoplay muted loop>
<source src="img/Right.mp4" type="video/mp4" class="embed-responsive-item">
</video>
<small>Will be replaced later</small>
</div>
</div>
<div class="row py-3 output-costs">
<div class="col-md">
<p>Estimated Loss: <span class="box border">TBD</span></p>
<p>Estimated Costs for Repair/Rebuilding: <span class="box border">TBD</span></p>
</div>
<div class="col-md">
<p>Estimated Benefits (Loss Reduction): <span class="box border">TBD</span></p>
<p>Associated Costs: <span class="box border">TBD</span></p>
</div>
</div>
</div>
<footer>
<div class="footer-pane pt-4 pb-5">
<div class="container-fluid">
<div class="row my-4">
<div class="col-md-8">
<div class="footer-title">Vision</div>
<div>Mangroves pave the path for coastal communities to THRIVE under the worsening "hazardscape."
</div>
</div>
<div class="col-md-4">
<ul class="d-flex flex-row list-unstyled">
<li>
<a href="https://www.twitter.com" title="Twitter" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com" title="Facebook" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="footer-banner m">Hosted by Missouri University of Science and Technology</div>
</div>
</div>
<div id="mst-logo-gray">
<img src="img/mst_logo_gray.png" alt="">
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>