-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (64 loc) · 1.78 KB
/
index.html
File metadata and controls
71 lines (64 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Final Score Calculator for Zama Project</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="calculator">
<h2>Zama Final Calculator</h2>
<div class="form-row">
<div class="input-block">
<label for="posts">Number of Posts</label>
<input type="number" id="posts" placeholder="e.g. 10" value="10" />
</div>
<div class="input-block">
<label for="smartFollowers">Smart Followers</label>
<input
type="number"
id="smartFollowers"
placeholder="e.g. 5000"
value="5000"
/>
</div>
</div>
<div class="form-row">
<div class="input-block">
<label for="normalFollowers">Normal Followers</label>
<input
type="number"
id="normalFollowers"
placeholder="e.g. 20000"
value="20000"
/>
</div>
<div class="input-block">
<label for="impressions">Impressions</label>
<input
type="number"
id="impressions"
placeholder="e.g. 80000"
value="80000"
/>
</div>
</div>
<button onclick="calculateScore()">Calculate Final Score</button>
<div class="result" id="result">Final Score: —</div>
</div>
<footer>
<p>
© 2025 created by
<a
href="https://twitter.com/musty0411"
target="_blank"
rel="noopener noreferrer"
>
@musty0411
</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>