-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartpage.html
108 lines (90 loc) · 2.76 KB
/
startpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link href="Assets/Images/icon.png" rel="icon">
<title>Kate Spade Memory Game</title>
</head>
<style>
@font-face {
font-family: "AustinBold";
src: url("Assets/Fonts/Austin\ Roman.otf") format("truetype");
}
@font-face {
font-family: "Futura";
src: url("Assets/Fonts/Futura.ttf");
}
* {
box-sizing: border-box;
}
h1 {
font-family: "AustinBold";
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
html {
min-height: 80vh;
font-family: "AustinBold";
}
body {
margin: 0;
display: flex;
flex-direction: column;
min-height: 50vh;
width: 100%;
background-repeat: repeat;
background-size: cover;
/* background: #EFBDCA; */
background-image: url("Assets/Images/bgd.jpg");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.btn {
margin: auto;
background-color: #EFBDCA;
height: 50px;
width: 200px;
padding-top: 12px;
border-radius: 0%;
font-size: 1rem;
font-family: Futura;
letter-spacing: 3px;
color: 010101;
text-decoration: none;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
margin: auto;
display: block;
}
</style>
<body>
<div>
<img style="height: 106px; width: 153.3px; margin-top: 15px;" class="center" src="Assets/Images/logo.jpg">
</div>
<h1 style="margin-top: 20px; font-size: 30px; text-decoration: none; font-family: AustinBold; text-align: center;">MEMORY GAME</h1>
<div>
<img style="height: 180px; width: 180px; margin-top: 0px; margin-bottom: 0px;" class="center" src="Assets/Images/card-image.png">
</div>
<div>
<h2 style="margin-top: 5px; font-size: 20px; text-decoration: none; font-family: AustinBold; text-align: center;">STAND A CHANCE</h2>
</div>
<div>
<p style="margin-top: 5px; line-height: 1.3; font-size: 16px; text-decoration: none; font-family: AustinBold; text-align: center;">
TO WIN AMAZING <br> VOUNCHER WHILE <br> WAITING IN THE QUEUE
</p>
</div>
<div style="margin-top: 5px;">
<a href="instruction.html" class="btn">START</a>
</div>
</body>
</html>