-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.47 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Homepage</title>
<style>
table, th, td{
border: 2px solid darkred;
border-spacing: 3px;
padding: 15px;
background-color: lightcoral;
}
th{
background-color: lightgreen;
}
#Design{
border: 0px;
width: 399px;
height: 800px;
}
#SpecifiedDesign{
width: 800px;
height: 63px;
border: 0px;
padding: -8px;
}
#EmptySpace{
border: none;
padding: 4px;
background-color: transparent;
}
</style>
</head>
<body bgcolor="darkgrey">
<center>
<br>
<table>
<tr>
<th colspan="2"><iframe id="SpecifiedDesign" src=".webpages/header.html"></iframe></th>
</tr>
<tr><th id="EmptySpace"></th></tr>
<tr>
<th colspan="2">
<video style="width: 815px; height: 485px; border: 1px solid black;" width="815" height="490" controls>
<source src=".sources/tutorial.mp4" type="video/mp4" alt="Tutorial.mp4">
Your browser does not support the video tag.
</video>
</th>
</tr>
<tr><th id="EmptySpace"></th></tr>
<tr>
<th><iframe id="Design" src=".webpages/clues.html"></iframe></th>
<th><iframe id="Design" src=".webpages/links.html"></iframe></th>
</tr>
<tr><th id="EmptySpace"></th></tr>
<tr>
<th colspan="2"><iframe id="SpecifiedDesign" src=".webpages/feedback.html"></iframe></th>
</tr>
</table>
</center>
</body>
</html>