-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (99 loc) · 3.68 KB
/
index.html
File metadata and controls
106 lines (99 loc) · 3.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World of Warcraft Cataclysm</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Welcome to World of Warcraft Cataclysm</h1>
</header>
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">REGISTRATION</a></li>
<li><a href="#">FILES</a></li>
<li><a href="#">STATISTICS</a></li>
<li><a href="#">INFORMATION</a></li>
<li><a href="#">DONATE</a></li>
<li><a href="#">FORUM</a></li>
<li class="login-icon">
<img src="img/login-button.png" alt="Login">
</li>
</ul>
</nav>
<section id="play">
<div class="cta-content">
<h2>Embark on an Epic Journey</h2>
<p>Experience the World of Warcraft Cataclysm like never before. Are you ready?</p>
<a href="your-play-link-here" class="play-button">Play Now</a>
</div>
</section>
<section id="server-info">
<h2>Server Information</h2>
<p>Online Players: <span id="online-players">Loading...</span></p>
<p>Horde: <span id="horde-players">Loading...</span> (<span id="horde-percentage">Loading...</span>)</p>
<p>Alliance: <span id="alliance-players">Loading...</span> (<span id="alliance-percentage">Loading...</span>)</p>
</section>
<section id="explore">
<h2>Explore Azeroth</h2>
<p>Embark on epic adventures in the altered landscapes of Azeroth. Traverse new zones, uncover hidden secrets, and face formidable foes as you explore the world of Cataclysm.</p>
</section>
<section id="news">
<h2>Latest News</h2>
<div class="news-container">
<div class="news-item">
<h3>Player Concerns</h3>
<p>Randomized text about player problems in Cataclysm goes here.</p>
</div>
</div>
<div class="news-container">
<div class="news-item">
<h3>Server Maintenance</h3>
<p>Randomized text about upcoming server maintenance.</p>
</div>
</div>
<div class="news-container">
<div class="news-item">
<h3>New Features</h3>
<p>Randomized text about exciting new features in Cataclysm.</p>
</div>
</div>
<div class="news-container">
<div class="news-item">
<h3>Community Events</h3>
<p>Randomized text about upcoming community events.</p>
</div>
</div>
<div class="news-container">
<div class="news-item">
<h3>Bug Fixes</h3>
<p>Randomized text about recent bug fixes and patches.</p>
</div>
</div>
<div class="news-container">
<div class="news-item">
<h3>Player Feedback</h3>
<p>Randomized text about player feedback and suggestions.</p>
</div>
</div>
<div class="news-container">
<div class="news-item">
<h3>Community Events</h3>
<p>Randomized text about upcoming community events.</p>
</div>
</div>
</section>
<section id="media">
<h2>Media</h2>
<img src="img/goblin.jpg" alt="Screenshot 1">
<img src="img/goblin2.jpg" alt="Screenshot 2">
</section>
<footer>
<p>© 2023 Your Website Name</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>