-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Scam Reporting Forum</title>
</head>
<body>
<header>
<h1>Scam Reporting Forum</h1>
</header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/report-scam">Report a Scam</a></li>
</ul>
</nav>
<main>
<h2>Welcome to the Scam Reporting Forum</h2>
<p>This is a platform where you can report and discuss various scams to help others stay informed and protected. To report a scam, click on the "Report a Scam" link in the navigation menu.</p>
<h2>Recent Scam Reports</h2>
<ul>
<li>
<h3>Phishing Email Scam</h3>
<p>User123 reported receiving a phishing email scam pretending to be from a bank.</p>
</li>
<li>
<h3>Online Shopping Scam</h3>
<p>User456 shared their experience with an online shopping website that turned out to be a scam.</p>
</li>
<!-- Add more scam reports here -->
</ul>
</main>
<footer>
<p>© 2023 Scam Reporting Forum</p>
</footer>
</body>
</html>