forked from ChristinaYang1/Burnout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.html
More file actions
51 lines (46 loc) · 1.29 KB
/
video.html
File metadata and controls
51 lines (46 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Title</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<!--Refreshes index.html after 180 seconds-->
<meta http-equiv="refresh" content="180;url=index.html">
<!--Creates 3s fade-in animation-->
<style>
body {
animation: fadeInAnimation ease 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>
</head>
<body>
<ul>
<li><a href="modal.html">Next</a></li>
<li><a href="index.html">Back</a></li>
<li style="float:left"><p>Touchscreen Interface Design Toolkit</li>
</ul>
<br>
<div class="flex-container">
<div text-align="center">
<a href="videoplayer.html">
<img src="img4.jpg" class="img-responsive" style="width:100%" alt="Image" >
<!-- Trigger/Open The Modal -->
<button>Play Video</button></a>
</div>
<div>
<p style="font-size:12pt;">A Flexible Layout must have a parent element with the <em>display</em> property set to <em>flex</em>.</p>
</div>
</div>
</body>
</html>