This repository has been archived by the owner on Dec 17, 2019. It is now read-only.
forked from devshawn/3601-S16-lab1_HTML-CSS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
92 lines (83 loc) · 4.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dice Dojo</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div id="wrapper">
<div id="header">
<img src="assets/images/logo.png" alt="Dice Dojo">
</div>
<div id="navbar">
<ul>
<li><a href="">Home</a></li>
<li><a href="#mission">Mission</a></li>
<li><a href="#products">Games</a></li>
<li><a href="#employees">Staff</a></li>
<li><a href="#social">Social</a></li>
<li><a href="#footer">Contact</a></li>
</ul>
</div>
<div id="main">
<div id="intro">
<img src="assets/images/morris.jpg" alt="Morris, MN">
</div>
<div id="mission">
<h1>Mission Statement:</h1>
<p>Our mission is to provide the highest quality entertainment and gaming to rural Minnesota, at a reasonable price.</p>
<img src="assets/images/mission.jpg" alt="Our Mission">
</div>
<div id="products">
<h1>Product List:</h1>
<h2>Scrabble</h2>
<figure>
<img src="assets/images/1.jpg" alt="Scrabble">
<figcaption>A board game where you use letter tiles to make words.<br />
The object of the game is two score more points than your opponents based on the words you make.<br/><br />
<em>Our staff rates this game: 3.1 / 5 stars</em></figcaption>
</figure>
<h2>Chess</h2>
<figure>
<img src="assets/images/2.jpeg" alt="Chess">
<figcaption>A board game for two players who move their 16 pieces according to specific rules.<br />
The object is to checkmate the opponent's king.<br/><br/>
<em>Our staff rates this game: 4.2 / 5 stars</em></figcaption>
</figure>
<h2>Snakes and Ladders</h2>
<figure>
<img src="assets/images/3.jpg" alt="Snakes and Ladders">
<figcaption>It consists of a square board made up of 100 squares (10 x 10 squares). <br/>
To play, players roll a single die and advance their token the rolled number of spaces, with the arrival at the hundredth square being the ultimate goal.<br/><br/>
<em>Our staff rates this game: 2.5 / 5 stars</em></figcaption>
</figure>
</div>
<div id="employees">
<img src="assets/images/shop.jpg" alt="Employees">
<h1>Employees:</h1>
<p>Our knowlegable staff is dedicated to providing patrons with excellent service and expertise.</p>
<img src="assets/images/store.jpg" alt="Our Store">
</div>
<div id="social">
<h1>Social Media:</h1>
<ul>
<li><a href="http://facebook.com"><img src="assets/social/fb.png" alt="Facebook"></a></li>
<li><a href="http://twitter.com"><img src="assets/social/tw.png" alt="Twitter"></a></li>
<li><a href="http://youtube.com"><img src="assets/social/yt.png" alt="YouTube"></a></li>
<li><a href="http://pinterest.com"><img src="assets/social/pin.png" alt="Pinterest"></a></li>
<li><a href="http://linkedin.com"><img src="assets/social/in.png" alt="LinkedIn"></a></li>
</ul>
</div>
</div>
<div id="footer" class="clearfix"><footer>
<div class="left">Dice Dojo<br/>123 Somewhere Street<br/>
Morris, MN 56267<br/></div>
<div class="right">Call or fax:<br/>(320) 123-4567</div>
</footer>
</div>
</div>
</body>
</html>