-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
39 lines (39 loc) · 1.08 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
<!--
Author: Hitarth Singh & Kerim Kochekov
Project: Museum Imaginarium
Description: Greeting page
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/styles.css">
<link href='https://fonts.googleapis.com/css?family=Amatic SC' rel='stylesheet'>
<style>
.multicolortext {
background-image: linear-gradient(to left, violet, indigo, green, blue, rgb(49, 49, 11), orange, red);
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<div id="startScreen">
<div>
<h1>Museum Imaginarium</h1>
</div>
<div>
<p id = "team"> Prepared by Team 8:<br/><u>Hitarth Singh & Kerim Kochekov</u></p>
<p>During the game press <b>R</b> to restart the game.</p>
<p>Write your desired input below and press <b>ENTER</b> to see the
<b class="multicolortext">MAGIC</b>.</p>
</div>
<div>
<input type="text" id="fname" name="fname">
<div>
<img src="assets/mn29.png" alt="Minion Ghost">
</div>
<script src="js/starter.js"></script>
</body>
</html>