-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplayroom.html
More file actions
84 lines (70 loc) · 2.87 KB
/
playroom.html
File metadata and controls
84 lines (70 loc) · 2.87 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Assignment4">
<title>Playroom Reconstructions </title>
<link rel="stylesheet" href="css/subpage.css">
<style>
figure {
display: flex;
flex-direction: column; /* Make sure the iframe and caption stack vertically */
align-items: center; /* Center both iframe and caption */
margin: 20px 0; /* Add some space between figures */
}
iframe {
border: 1px solid #ccc; /* Optional: Adds a border around iframe */
max-width: 100%; /* Make sure iframe is responsive */
}
figcaption {
text-align: center; /* Center the text */
font-style: italic; /* Optional: Make the caption italic */
margin-top: 10px; /* Add some space between iframe and caption */
}
</style>
</head>
<body>
<header>
<h1>Assignment 4 Teams Playroom Reconstructions</h1>
</header>
<main>
<figure>
<iframe src="data/2024/playroom/deanhazineh.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Dean Hazineh</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/alyssa-javid.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Alyssa Mia Taliotis and Javid Lakha</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/alina-kassandra.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Alina and Kassandra</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/Rose-Grayson.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Rose Luo and Grayson Martin</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/michael.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Michael</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/playroom_drake_amulya_pnp.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Drake and Amulya</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/reconstruction.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>T.Baxley</figcaption>
</figure>
<figure>
<iframe src="data/2024/playroom/rima_rebei.html" width="100%" height="600px" frameborder="0"></iframe>
<figcaption>Rima</figcaption>
</figure>
<!-- Add your plots here copying the code above -->
<!-- Change the src to point to your html file and adjust the caption to your names -->
<!-- End -->
</main>
<a href="index.html">Back to Home</a>
</body>
</html>