-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
88 lines (82 loc) · 3.27 KB
/
aboutus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link rel="icon" type="image/png" href="Web Design Assets/Sidebar/Minimize/LogoSidebarMinimize.svg"/>
<style>
h1 {
font-size: 3rem;
margin-bottom: 30px;
text-align: center;
}
.about-section {
background: rgba(0, 0, 0, 0.6);
padding: 20px;
border-radius: 10px;
line-height: 1.8;
font-size: 1.2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.logo {
margin-bottom: 20px;
}
.logo img {
display: block;
width: 120px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div class="main-area">
<!-- Sidebar -->
<div class="sidebar">
<a href="index.html">
<img src="Web Design Assets/Sidebar/Maximize/Home.svg" alt="Home">
</a>
<a href="news.html">
<img src="Web Design Assets/Sidebar/Maximize/News.svg" alt="News">
</a>
<a href="offer.html">
<img src="Web Design Assets/Sidebar/Maximize/Offer.svg" alt="Offer">
</a>
<a href="contactus.html">
<img src="Web Design Assets/Sidebar/Maximize/ContactUs.svg" alt="Contact Us">
</a>
<a href="aboutus.html">
<img src="Web Design Assets/Sidebar/Maximize/AboutUs.svg" alt="About Us">
</a>
<a href="more.html">
<img src="Web Design Assets/Sidebar/Maximize/More.svg" alt="More">
</a>
<div class="account-buttons">
<a href="login.html"><button class="btn btn-dark">Login</button></a>
<a href="login.html"><button class="btn btn-light">Register</button></a>
</div>
</div>
<!-- Main Content -->
<div class="content">
<div class="logo">
<img src="Web Design Assets/LoginRegister/Logo.svg" alt="K-GamE Logo">
</div>
<h1>We are K-GamE!</h1>
<div class="about-section">
<p>Welcome to K-GamE, your ultimate destination for all things gaming! Whether you’re a casual player, a dedicated esports enthusiast, or a collector of gaming merch, we’ve got you covered. Our website is designed to keep you informed and engaged with the latest gaming news, trends, and updates from around the globe. From breaking announcements and in-depth reviews to exclusive merchandise and tips, K-GamE is your one-stop hub for everything in the gaming universe.</p>
</div>
</div>
</div>
<div class="footer">
<p>© 2024 K-GamE. All rights reserved. </p>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>