-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (23 loc) · 915 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (23 loc) · 915 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
<html>
<head>
<title>Colonoscopy</title>
<!-- Bootstrap CSS Framework https://getbootstrap.com/ -->
<!-- TODO: An alternative could be https://materializecss.com/ -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script type="text/javascript" src="colonoscopy.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="elm-container"></div>
</div>
</div>
</div>
<script type="text/javascript">
Elm.Main.embed(document.getElementById('elm-container'));
</script>
</body>
</html>