-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoyseEgg.html
109 lines (93 loc) · 2.52 KB
/
moyseEgg.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-191749773-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-191749773-2');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
overflow-y: scroll;
-ms-overflow-style:none;
scrollbar-width:none;
font-family: 'PT Sans', sans-serif;
}
.grid-container {
display: grid;
grid-template-columns: 0.2fr 2fr 0.2fr 2.4fr 0.2fr;
grid-template-rows: 0.2fr 0.7fr 2.8fr 1fr 0.3fr;
gap: 0px 0px;
grid-template-areas:
". . . . ."
". Text . . ."
". Text . Percival ."
". Text . . ."
". . . . .";
}
.Text {
grid-area: Text;
}
.Percival {
grid-area: Percival;
}
body::-webkit-scrollbar{
display:none
}
#img1 {
width:1000px;
height: auto;
margin-top: -200px;
margin-left: 25px;
}
#img2
{
width:1000px;
height: auto;
margin-top: -100px;
margin-left: 25px;
}
#textBlock{
width: 550px;
margin-left: 2%;
margin-top: 20px;
font-size:120%;
text-align:left;
Float: left;
background: #f6f5f3;
height:30em;
-webkit-box-orient:horizontal;
-webkit-box-direction:horizontal;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-ms-flex-direction:column;
flex-direction:column;
position: relative;
border-radius: 16px;
}
</style>
</head>
<body>
<div class="grid-container">
<div id="textBlock" class="Text">
<h3 align="center"> Student Productions </h3>
<h3 align="center"> McGill Red and White Revue </h3>
<ul>The McGill Red and White Revue was a student variety show group that staged annual performances between 1924 and the 1980s.
<br>
<br>This programme is from the 1951 show which was produced and directed by William Shatner, McGill's most famous Starfleet captain. <a href="https://archivalcollections.library.mcgill.ca/index.php/althea-douglas-fonds"target = "_blank">(MG 4131)</a>.
<br>
<br> MUA accession no. 2003-0111.02.14
</ul>
</div>
<div class = "Percival">
<img id="img1" src="images/collage.jpg">
<img id="img2" src="images/Background_shatner.100X652px.jpg">
</div>
</div>
</body>
</html>