forked from Pathushi/Plot-Twist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.html
46 lines (46 loc) · 1.99 KB
/
MainPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plot Twist</title>
<link rel="stylesheet" href="MainPage.css">
</head>
<body>
<header class="navbar">
<div class="logo-section">
<img src="https://cdn-icons-png.flaticon.com/128/2702/2702184.png" alt="Plot Twist Logo" class="logo">
<span class="site-name">Plot Twist</span>
</div>
<nav>
<ul class="nav-links">
<li><a href="MainPage.html">Home</a></li>
<li><a href="Books.html">Books</a></li>
<li><a href="#discussions">Discussions</a></li>
<li><a href="#competitions">Competitions</a></li>
</ul>
</nav>
<div class="auth-buttons">
<button onclick="location.href='login.html'" class="btn">Login</button>
<button onclick="location.href='Register.html'" class="btn">Register</button>
</div>
</header>
<main>
<section id="about">
<h1>Welcome to Plot Twist</h1>
<div class="info-sections">
<div class="info-card">
<h2>What is Plot Twist?</h2>
<p>Plot Twist is a virtual book club where book enthusiasts gather to discuss novels, share reviews, and participate in engaging activities.</p>
<img src="https://cdn-icons-png.flaticon.com/128/3429/3429151.png" alt="Book Club" class="icon">
</div>
<div class="info-card">
<h2>What We Do</h2>
<p>We organize podcasts, book reviews, and exciting competitions for our club members. Join us to explore the world of books!</p>
<img src="https://t4.ftcdn.net/jpg/03/19/74/85/240_F_319748540_1DjIMB2DD3UX02uqobgIgIV16WkvrPzi.jpg" alt="Activities" class="icon">
</div>
</div>
</section>
</main>
</body>
</html>