-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·132 lines (117 loc) · 4.57 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<Title>The Serial Bible</Title>
<!--<link rel="stylesheet" type="text/css" href="css/reset.css" />-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script> -->
<!--tells browser to download jquery from a CDN-->
<script type="text/javascript" src="js/vendor/jquery-2.1.3.js"></script>
<!--jquery is stored locally-->
<script type="text/javascript" src="js/vendor/jquery-ui.js"></script>
<!--plugins go second because they rely on js-->
<script type="text/javascript" src="js/script.js"></script>
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<p class = wip>This site is under construction<br>and not yet functional<br><br>
By Michael Grover<br><a href="http://michaelgroverdesign.com">Visit my portfolio site</a></p>
<!-- <img class = "bar" src = img/bar-03.jpg></img> -->
<div class = hero-display-wrapper>
<img class = logo src = "img/logo.svg"></img>
<!--<h1>the<br>serial<br>bible</h1>-->
</div>
<div class = book-display-wrapper>
<img class = "book" src = "img/book_1.png"></img>
<img class = "book" src = "img/book_2.png"></img>
<img class = "book hide" src = "img/book_3.png"></img>
<img class = "book hide" src = "img/book_4.png"></img>
<img class = "book hide2" src = "img/book_5.png"></img>
<img class = "book hide2" src = "img/book_6.png"></img>
<img class = "book" src = "img/book_3.png"></img>
<img class = "book" src = "img/book_4.png"></img>
<img class = "book hide" src = "img/book_5.png"></img>
<img class = "book hide" src = "img/book_6.png"></img>
<img class = "book hide2" src = "img/book_1.png"></img>
<img class = "book hide2" src = "img/book_2.png"></img>
</div>
<div class = "quote-wrapper-1">
<h2>“A startlingly fresh presentation;<br>
old wine in new bottles.”</h2>
</div>
<div class = "featured-wrapper">
<div class = "column-wrapper">
<div class = "single-content-wrapper">
<div class = "featured-book-wrapper">
<img class = "featured-book" src = "img/book_1.png">
<a class = "buy-now" href="http://google.com"><strong>Buy Now</strong></a>
</div>
<div class = "featured-text-wrapper">
<h3>Wrath</h3>
<p class = "book-quote">“And he turned back, and looked on them, and cursed them in the name of the lord. And there came forth two she bears out of the wood, and tare forty and two children of them.” <br><br>— Kings 2:24</p>
</div>
</div>
<div class = "single-content-wrapper">
<div class = "featured-book-wrapper">
<img class = "featured-book" src = "img/book_2.png">
<a class = "buy-now" href="http://google.com"><strong>Buy Now</strong></a>
</div>
<div class = "featured-text-wrapper">
<h3>Scandal</h3>
<p class = "book-quote">“And he turned back, and looked on them, and cursed them in the name of the lord. And there came forth two she bears out of the wood, and tare forty and two children of them.” <br><br>— Kings 2:24</p>
</div>
</div>
</div>
</div>
<div class="footer">
<div class = "footer-column-wrapper">
<div class = "footer-column">
<h4>Books</h4>
<ul>
<li>Genesis</li>
<li>Exodus</li>
<li>Leviticus</li>
<li>Numbers</li>
<li>Deuteronomy</li>
<li>Joshua</li>
</ul>
</div>
<div class = "footer-column">
<h4>_</h4>
<ul>
<li>Judges</li>
<li>Samuel</li>
<li>Kings</li>
<li>Chronicles</li>
<li>Ezra</li>
<li>Job</li>
</ul>
</div>
<div class = "footer-column">
<ul>
<h4>Contact</h4>
<li>[email protected]</li>
</ul>
</div>
<!--
<div class = "footer-column">
<ul>
<h4>Test</h4>
<li>Test</li>
</ul>
</div>
-->
<div class = "footer-column">
<ul>
<h4>_</h4>
<li>This is a project by Michael Grover.</li>
<li><a href = "http://michaelgroverdesign.com">MichaelGroverDesign.com</a></li>
<li>© Serial Bible 2016</li>
</ul>
</div>
</div>
</div>
</body>
</html>