-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (98 loc) · 4.44 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
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
110
111
112
113
114
115
<!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://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<title>Olivia's Casino</title>
<style>
.jumbotron {
background-image: url(images/FutureWebApp.jpg);
}
p.join, .lead, .display-4, .form-control-plaintext {
color: azure;
font-family: sans-serif;
}
.writing .feature {
text-align: left;
}
#email {
width: 300px;
}
body {
background-color: blueviolet;
}
</style>
</head>
<body>
<h1>Olivia's Casino</h1>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Casino</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Jackpot <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Poker</a>
</li>
<li class="nav-item">
<a class="nav-link" href="">Free games</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="email" placeholder="Email" aria-label="Email">
<input class="form-control mr-sm-2" type="password" placeholder="Password" aria-label="Password">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Login</button>
</form>
</div>
</nav>
<div class="jumbotron">
<h1 class="display-4">Online games</h1>
<p class="lead">Play awesome games with your friends!</p>
<hr class="my-4">
<p class="join">Want to play? Create a new Account!</p>
<button type="submit" class="btn btn-primary mb-2">Registration</button>
</div>
<div class="container">
<div class="row" id="appSummary"></div>
<h1 class="writing"></h1>
<p class="feature"></p>
</div>
<div class="container">
<div class="card-deck">
<div class="card">
<img src="images/Sizz.jpg" class="card-img-top" alt="image">
<div class="card-body">
<h5 class="card-title">Sizzling Hot</h5>
<p class="card-text">Sizzling Hot Deluxe is a video slot from the game provider Novomatic. Gameplay and Atmosphere The game format offers 5 reels with 5 paylines. Sizzling Hot Deluxe is featuring themes such as Classic, Fruits, Sevens, Stars, and even more. </p>
<p class="card-text"><small class="text-muted"></small></p>
</div>
</div>
<div class="card">
<img src="images/Jackpt.jpg" class="card-img-top" alt="image">
<div class="card-body">
<h5 class="card-title">Jackpot</h5>
<p class="card-text">Big win 777 lottery vector casino concept with slot machine. win jackpot in game slot machine illust Premium Vector.</p>
<p class="card-text"><small class="text-muted"></small></p>
</div>
</div>
<div class="card">
<img src="images/Poker.jpg" class="card-img-top" alt="image">
<div class="card-body">
<h5 class="card-title">Poker</h5>
<p class="card-text">This game is popular amongst professional poker players, amateur and players who have a casual interest in card games. There are different variations in the game of poker, such as Stud, Draw, and Hold’ em, and there is a sizeable following for each of these versions.</p>
<p class="card-text"><small class="text-muted"></small></p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>