-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
62 lines (56 loc) · 1.34 KB
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Discord Bot</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
}
header {
background-color: #36393f;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
}
main {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
p {
font-size: 18px;
line-height: 1.5;
}
button {
background-color: #7289da;
border: none;
color: #fff;
padding: 10px 20px;
border-radius: 4px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #677bc4;
}
</style>
</head>
<body>
<header>
<h1>My Discord Bot</h1>
</header>
<main>
<p>Welcome to My Discord Bot, the ultimate bot for your Discord server! With a range of features including time tracking, weather updates, and more, our bot is the perfect addition to any server. Try it out today!</p>
<button>Add to Discord</button>
</main>
</body>
</html>