-
Notifications
You must be signed in to change notification settings - Fork 2
/
dev.html
69 lines (59 loc) · 2.66 KB
/
dev.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ResearchSpace</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="styles/basic.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- Leave those next 4 lines if you care about users using IE8 -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
$(function(){
$("#includedHeader").load("header.html");
});
</script>
<script>
$(function(){
$("#includedFooter").load("footer.html");
});
</script>
</head>
<body>
<div class="container">
<div id="includedHeader"></div>
<div class="title"><h3>Dev</h3></div>
<div id="demo" class="carousel slide" data-ride="carousel" data-interval="5000">
<!-- The slideshow -->
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div style="text-align: center" class="carousel-item active">
<H2>As researchers we aspire to build and preserve knowledge across space and time…
</H2>
</div>
<div style="text-align: center" class="carousel-item">
<H2>We investigate, build on and connect ideas, and we assert and resolve different arguments...</H2>
</div>
<div style="text-align: center" class="carousel-item">
<H2>We bring knowledge of the world and its history to life in descriptive and analytical narratives which convey how people and things interconnect...</H2>
</div>
<div style="text-align: center" class="carousel-item">
<H2>But when we translate our knowledge into data we hit problems...</H2>
</div>
</div>
</div>
</div>
<video autoplay width="800" height="600"
name="Video Name" src="./images/SOLAR%20PLEXUS_01.mov"></video>
</div>
</body>
</html>