-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnews.html
60 lines (60 loc) · 2.39 KB
/
news.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Community News</title>
<link rel="stylesheet" href="news.css">
</head>
<body>
<header>
<h1>News</h1>
<p>Stay informed with the latest news and updates from our community.</p>
</header>
<main>
<section class="news-feed">
<article>
<h2><a href="#">Breaking News: Community Event Scheduled</a></h2>
<p class="date">August 26, 2024</p>
<p class="summary">Our community event is scheduled for next month. Don't miss out on the fun activities and networking opportunities!</p>
<a href="#" class="read-more">Read More</a>
</article>
<article>
<h2><a href="#">New Forum Feature Launched</a></h2>
<p class="date">August 24, 2024</p>
<p class="summary">We are excited to announce the launch of a new feature on our forum that will enhance user interaction and engagement.</p>
<a href="#" class="read-more">Read More</a>
</article>
<!-- Add more articles as needed -->
</section>
<aside>
<h3>Upcoming Events</h3>
<ul>
<li>Community Meetup - September 10, 2024</li>
<li>Web Development Workshop - September 15, 2024</li>
<!-- Add more events as needed -->
</ul>
<h3>Popular Posts</h3>
<ul>
<li><a href="#">How to Maximize Forum Engagement</a></li>
<li><a href="#">Top Tips for Effective Community Building</a></li>
<!-- Add more posts as needed -->
</ul>
<h3>Newsletter Signup</h3>
<form action="#" method="post">
<input type="email" name="email" placeholder="Your email" required>
<button type="submit">Subscribe</button>
</form>
</aside>
</main>
<footer>
<p>Contact us at: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Follow us on social media:
<a href="#">Facebook</a> |
<a href="#">Twitter</a> |
<a href="#">Instagram</a>
</p>
<p>© 2024 Community Forum. All rights reserved.</p>
</footer>
</body>
</html>