-
Notifications
You must be signed in to change notification settings - Fork 2
/
welcome.html
46 lines (46 loc) · 1.49 KB
/
welcome.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Book Recommendation</title>
<script type="text/javascript" src="/eel.js"></script>
<style>
.recommendation {
margin-top: 150px;
width: 100%;
text-align: center;
}
a.btn {
display: inline-block;
color: white;
background-color: #fe9929;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 2px;
font-size: 18px;
font-family: "Arial Rounded MT Bold";
padding: 30px 30px;
border-radius: 5px;
margin: 10px;
}
a.btn:hover {
background-color: #d95f0e;
}
</style>
</head>
<body style ="background: #faf1cd">
<div class="recommendation">
<b style="font-family: Kefa; font-size: 40px;">Welcome</b>
<p style="font-family: American Typewriter; font-size: 25px;">Get Your Book Recommendation !</p>
<p style="margin: 10px">
<a href="selection.html?method=age" class="btn">Age</a>
<a href="selection.html?method=region" class="btn">Region</a>
<a href="selection.html?method=category" class="btn">Category</a>
</p>
<p style="margin: 10px">
<a href="selection.html?method=book" class="btn">Book Name</a>
<a href="selection.html?method=twitter" class="btn">Twitter Keywords</a>
</p>
</div>
</body>
</html>