-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (98 loc) · 3.96 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
<!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">
<title>Casino Website</title>
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<style>
@import url('https://fonts.googleapis.com/css?family=Raleway');
</style>
</head>
<body>
<!-- Showcase & Nav-->
<div id="showcase">
<header>
<nav class='cf'>
<ul class='cf'>
<li class="hide-small">
<a href='#showcase'>Casino</a>
</li>
<li>
<a href='#black-jack'>Blackjack</a>
</li>
<li>
<a href='#dices'>Dices</a>
</li>
<li>
<a href='#roulette'>Roulette</a>
</li>
<li>
<a href='#'>Rules</a>
</li>
</ul>
<a href='#' id='openup'>Casino Online</a>
</nav>
</header>
<section class="section-main container">
<h1>Welcome to Casino Online!</h1>
<h2>All popular gambling games on your device!</h2>
<p class="lead hide-small">Do you want to play blackjack or spin rulette?
You are in the right place.
Play on Casino Website in your favorite gambling games.
No limits. Pure
fun.
Safety at all!
</p>
</section>
</div>
<!-- BlackJack Section -->
<section id="black-jack" class="section">
<div class="container">
<h2 class="section-head">
Black Jack
</h2>
<h3>Find BlackJack table for you!</h3>
<p class="lead hide-small">
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Voluptates autem unde, ut dolores consequatur
blanditiis consectetur laborum ratione natus vel recusandae ab repellat mollitia quo quod, impedit ex,
repudiandae beatae.
</p>
<img src="img/casino-mockup.png" alt="site on phone mockup">
<button class="play-button">Play Now!</button>
</div>
</section>
<!-- -->
<section id="dices" class="section background-light">
<div class="container">
<h2 class="section-head">Dices</h2>
<h3>Maybe its your lucky roll?</h3>
<p class="lead hide-small">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quasi tenetur repellat
ipsa sint
quod
placeat consequatur officia vitae harum explicabo?</p>
<img src="http://www.grammarly.com/blog/wp-content/uploads/2016/07/dice.gif" alt="dices photo">
<button class="play-button">Play Now!</button>
</div>
</section>
<!-- Rulette Session -->
<section id="roulette" class="section background-dark">
<div class="container">
<h2 class="section-head">
Roulette
</h2>
<h3>Spin your lucky today!</h3>
<p class="lead hide-small">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Asperiores incidunt
quo saepe aliquam alias
dolor, eveniet temporibus. Magnam aperiam harum asperiores libero iure recusandae? Omnis illo minus
optio ipsum adipisci.</p>
<img src="https://3c1703fe8d.site.internapcdn.net/newman/gfx/news/hires/2016/canmathshelp.jpg" alt="photo of Roulette">
<button class="play-button">Play now!</button>
</div>
</section>
<script src="js/main.js"></script>
</body>
</html>