-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
39 lines (36 loc) · 1.14 KB
/
welcome.html
File metadata and controls
39 lines (36 loc) · 1.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to BookChain</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
.button {
padding: 15px 30px;
font-size: 18px;
margin: 20px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white;
}
.button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>Welcome to BookChain!</h1>
<p>What would you like to do today?</p>
<!-- Options to Buy, Sell or Exchange -->
<button class="button" onclick="window.location.href='buy.html'">Buy Books/Notes</button>
<button class="button" onclick="window.location.href='sell.html'">Sell Books/Notes</button>
<button class="button" onclick="window.location.href='exchange.html'">Exchange Books/Notes</button>
</body>
</html>