-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
94 lines (89 loc) · 4.51 KB
/
about.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
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaming News Hub - About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<nav class="sidebar">
<div class="logo">
<h2>Playzone Area</h2>
</div>
<ul class="connect">
<li><a href="index.html">Home</a></li>
<li><a href="trending.html">Trending News</a></li>
<li><a href="esports.html">Esports News</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="guides.html">Guides & Tips</a></li>
<li><a href="about.html" class="active">About</a></li>
</ul>
</nav>
<main class="content">
<div class="about-hero" >
<h1>About Playzone Area</h1>
<p class="mission-statement">Bringing the gaming world closer together through comprehensive news coverage, community engagement, and expert insights.</p>
</div>
<section class="about-section">
<h2>Our Story</h2>
<p>Playzone Area was born from a shared passion for gaming and the desire to create a comprehensive platform where gamers can stay informed, connected, and engaged. Our journey began when three gaming enthusiasts decided to transform their vision into reality.</p>
<p>We chose to create a gaming news website because we believe in the power of gaming to bring people together, inspire creativity, and push the boundaries of technology. Our platform serves as a bridge between gamers, developers, and the ever-evolving gaming industry.</p>
</section>
<section class="team-section">
<h2>Meet Our Team</h2>
<div class="team-grid">
<div class="team-member">
<div class="member-image">
<img src="PHOTO-2024-12-10-22-13-34.jpg" alt="Anirudh Panigrahi">
</div>
<div class="member-info">
<h3>Anirudh Panigrahi</h3>
<p class="member-role">Content Strategist</p>
<p class="member-bio">Dedicated to bringing the latest gaming news and creating engaging content for our readers.</p>
</div>
</div>
<div class="team-member">
<div class="member-image">
<img src="PHOTO-2024-12-10-22-14-18.jpg" alt="Daksh Saini">
</div>
<div class="member-info">
<h3>Daksh Saini</h3>
<p class="member-role">Creative Director</p>
<p class="member-bio">Expert in UI/UX design and creating engaging visual experiences for our gaming community.</p>
</div>
</div>
<div class="team-member">
<div class="member-image">
<img src="PHOTO-2024-12-10-22-13-50.jpg" alt="Sameer Pawar">
</div>
<div class="member-info">
<h3>Sameer Pawar</h3>
<p class="member-role">Lead Developer</p>
<p class="member-bio">Passionate about creating seamless user experiences and implementing cutting-edge web technologies.</p>
</div>
</div>
</div>
</section>
<section class="values-section">
<h2>Our Values</h2>
<div class="values-grid">
<div class="value-card">
<h3>Authenticity</h3>
<p>Delivering honest, unbiased gaming news and reviews.</p>
</div>
<div class="value-card">
<h3>Community</h3>
<p>Fostering a welcoming space for gamers to connect and share.</p>
</div>
<div class="value-card">
<h3>Innovation</h3>
<p>Staying at the forefront of gaming technology and trends.</p>
</div>
</div>
</section>
</main>
</div>
</body>
</html>