-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (38 loc) · 1.88 KB
/
index.html
File metadata and controls
60 lines (38 loc) · 1.88 KB
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>School of Chemistry</title>
<meta name="description" content="Basic website for looping video">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<!-- Support old browsers -->
<link rel="stylesheet" href="css/normalize.css">
<!-- Standardise look across browsers -->
<link rel="stylesheet" href="css/html5_boilerplate.css">
<!-- Main styling -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Video to play -->
<video id="my-video" class="video" loop>
<source src="media/video.mp4" type="video/mp4">
<source src="media/video.webm" type="video/webm">
<source src="media/video.ogg" type="video/ogg">
</video><!-- /video -->
<!-- Support old browsers -->
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
<!--Include jquery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!-- If jquery could not be load via TCP load local copy -->
<script>window.jQuery || document.write('<script src="js/vendor/jquery-3.2.1.min.js"><\/script>')</script>
<!-- Load plugins -->
<script src="js/plugins.js"></script>
<!-- Custom JS-->
<script src="js/main.js"></script>
</body>
</html>