-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (51 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Games2you</title>
<link href="assets/styles/app.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Krona+One&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Welcome to Games2you</h1>
</header>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="our-range.html">OUR RANGE</a></li>
<li><a href="web-games.html">FUN WEB GAMES</a></li>
</ul>
</nav>
<main class="front">
<article class="frontleft">
<h2>Spotlight on Monopoly Deal</h2>
<div class="spotlight">
<img src="assets/images/monopoly_deal.png" alt="picture of Monopoly Deal card game" style="float: left; margin-right: 25px;">
<p>MONOPOLY DEAL keeps everything that makes MONOPOLY fun, and condenses all of the frantic action into a fast-paced card game.</p>
<ul>
<li>Monopoly Deal is the card version of the classic Monopoly game.</li>
<li>Collect sets of properties with different colors.</li>
<li>Earn and swap properties and charge other players rent.</li>
<li>Steal properties or demand money from other players when you get the right Action card.</li>
</ul>
</div>
</article>
<aside class="frontright">
<h2>We Stock:</h2>
<ul>
<li><a href="our-range.html">Card Games</a></li>
<li><a href="our-range.html">Board Games</a></li>
<li><a href="our-range.html">Classic Games</a></li>
<li><a href="our-range.html">Latest Games</a></li>
</ul>
</aside>
</main>
<footer>
<a href="https://www.facebook.com/skillstrategies/" target="_blank">
<img src="assets/images/FB-50px.png" alt=""/>
</a>
</footer>
</body>
</html>