-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplashscreen.html
More file actions
68 lines (68 loc) · 2.22 KB
/
splashscreen.html
File metadata and controls
68 lines (68 loc) · 2.22 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
<html>
<head>
<title>
Welcome!
</title>
<link rel="stylesheet" href="/WDLProject/css/style.css">
<style type="text/css">
.conmarg{
margin-left: 25%;
margin-right: 25%;
border-radius: 15px;
}
.button1{
display: inline-block;
border-radius: 15px;
background-color: #f4511e;
border: none;
color: #FFFFFF;
font-size: 19px;
width: 100px;
transition: all 0.5s;
cursor: pointer;
height: 30px;
}
.button1 span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button1 span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button1:hover span {
padding-right: 20px;
}
.button1:hover span:after {
opacity: 1;
right: 0;
}
img{
height: 100px;
width: 150px;
}
</style>
</head>
<body style="background: linear-gradient(135deg,white,yellow,orange,red,maroon,black);">
<center>
<br><br><br><br><br><br><br>
<div class="w3-container conmarg w3-white w3-round">
<p>
<br>
<img src="/WDLProject/res/Logo.png" alt="FoodWorld">
<br>
<div class="w3-xxxlarge w3-myfont1">Welcome to <b>FoodWorld<sup>©</sup></b><br></div>
<div class="w3-xlarge w3-myfont1">Press enter to continue<br><br></div>
</p>
<button class="button1 w3-myfont4" style="width: 40%;height: 10%;" type="button" onclick="window.location.href = 'main.html';"><span>Enter</span></button>
<br><br><br>
</div>
</center>
</body>
</html>