-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fake Data Generator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Fake Data Generator</h1>
<form id="dataForm">
<label for="lang">Language:</label>
<select id="lang">
<option value="en">English</option>
<option value="de">German</option>
<option value="fr">French</option>
<option value="ms">Malayan</option>
<option value="zh">Chinese</option>
<option value="nl">Dutch</option>
<option value="it">Italian</option>
</select>
<button type="submit">Generate</button>
</form>
<div id="results"></div>
</div>
<div id="disclaimer">
<hr>
<p><strong>Disclaimer:</strong> The generated data is based on publicly available databases and the FakerAPI of fakerapi.it and is for illustrative purposes only. All data is randomly generated and does not represent real people, addresses, or emails.</p>
<p><strong>Copyright:</strong> All rights reserved. The use of this service is subject to the terms of the <a href="https://fakerapi.it/">used APIs</a> and their respective providers.</p>
<p><strong>Liability Disclaimer:</strong> No liability is assumed for the accuracy or use of the generated data. Use the data responsibly and in accordance with applicable laws.</p>
<p>© 2024 THE_13joker1. All rights reserved.</p>
</div>
<script src="script.js"></script>
</body>
</html>