-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
128 lines (111 loc) · 2.94 KB
/
index.html
File metadata and controls
128 lines (111 loc) · 2.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Superior Discord Bot</title>
<style>
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #ffffff;
background: #0f0c29; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
overflow-x: hidden;
}
.navbar {
display: flex;
justify-content: space-around;
align-items: center;
padding: 1rem;
background-color: rgba(0, 0, 0, 0.2);
}
.navbar a {
color: #fff;
text-decoration: none;
padding: 0.5rem 1rem;
transition: color 0.3s;
}
.navbar a:hover {
color: #00d2ff;
}
.header {
text-align: center;
padding: 2rem;
}
.header h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.header p {
font-size: 1.1rem;
margin-bottom: 2rem;
}
.product-info {
padding: 2rem;
text-align: center;
}
.product-info h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
.product-info p {
font-size: 1.1rem;
margin-bottom: 1rem;
}
.product-info ul {
list-style: none;
}
.product-info li {
background: rgba(255, 255, 255, 0.1);
margin: 1rem 0;
padding: 1rem;
border-radius: 5px;
}
.footer {
text-align: center;
padding: 1rem;
background-color: rgba(0, 0, 0, 0.2);
}
.footer p {
margin-bottom: 0.5rem;
}
</style>
</head>
<body>
<div class="navbar">
<!-- Navigation links -->
<a href="#home">Home</a>
<a href="#features">Features</a>
<a href="#pricing">Pricing</a>
<a href="#contact">Contact</a>
<a href="#support">Support</a>
</div>
<header class="header">
<!-- Product branding and welcome message -->
<h1>Welcome to Superior Discord Bot!</h1>
</header>
<section class="product-info">
<!-- About the product -->
<h2>About Our Product</h2>
<p>Our product is designed to solve your needs with efficiency and ease.</p>
<!-- Product features and descriptions -->
<ul>
<li>Feature 1: Description</li>
<li>Feature 2: Description</li>
<li>Feature 3: Description</li>
</ul>
</section>
<footer class="footer">
<!-- Footer content -->
<p>Contact us at email@example.com</p>
<p>© 2023 Product Company</p>
</footer>
</body>
</html>