-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.19 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<link rel="stylesheet" href="css/bookdeck.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/bookdeckreset.css" type="text/css" media="all" />
</head>
<body>
<h1></h1>
<p>
Hover on the books
<span>
ReveryReview
</span>
</p>
<ul class="bookDeck">
<li class="book_item book_item--faq">
<a class="bookDeck_link" href="faq.html">
<span class="bookDeck_icon"></span>
<span class="deck_label">FAQ</span>
</a>
</li>
<li class="book_item book_item--contact">
<a class="bookDeck_link" href="contact.html">
<span class="bookDeck_icon"></span>
<span class="deck_label">Contact</span>
</a>
</li>
<li class="book_item book_item--about">
<a class="bookDeck_link" href="about.html">
<span class="bookDeck_icon"></span>
<span class="deck_label">About</span>
</a>
</li>
<li class="book_item book_item--home">
<a class="bookDeck_link" href="home.html">
<span class="bookDeck_icon"></span>
<span class="deck_label">Home</span>
</a>
</li>
</ul>
</body>
</html>