-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1.83 KB
/
index.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>Great Leader Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav style="background-color: red; height: 50px;">
<ul style="list-style: none; padding: 0; margin: 0; display: flex; justify-content: space-around; align-items: center; height: 100%;">
<li><a href="#" style="color: white; text-decoration: none;">HOME</a></li>
<li><a href="ABOUT US.html" style="color: white; text-decoration: none;">ABOUT US</a></li>
<li><a href="#" style="color: white; text-decoration: none;">GALLERY</a></li>
<li><a href="comment.html" style="color: white; text-decoration: none;">FEEDBACK</a></li>
<li><a href="#" style="color: white; text-decoration: none;">FAQ</a></li>
</ul>
</nav>
<header>
<h1>Great Leader Blog</h1>
</header>
<main>
<section id="leader-section">
<h2>Leaders</h2>
<!-- Ensure the image sources are correct and the images are hosted on your server -->
<img style="height:400px" src="./—Pngtree—maharana pratap hand drawing design_7599735.png" alt="Maharana Pratap" id="leader-img">
<img style="height: 380px;" src="https://pngbuy.com/wp-content/uploads/2023/07/shivaji-maharaj-png-13.png">
<p id="leader-bio">
<!-- Leader biography goes here -->
</p>
</section>
<button id="changeThemeBtn">Change Theme</button>
<button id="changePage">Maharana Pratap</button>
<button id="chngbtn" onclick="document.location='maharaj.html'">Shivaji Maharaj</button>
</main>
<script src="script.js"></script>
</script>
</body>
</html>