-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (35 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
42
43
44
45
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/salesInfoStyle.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@200&display=swap" rel="stylesheet">
<title>Upliftium per hour - Wallet Search</title>
</head>
<body>
<div >
<div >
<header>
<h1 class="logo">Drip Rate Calculator</h1>
</header>
<!-- Main Container -->
<form action="javascript:getMiningRate()">
<label for="wallet">Enter wallet address</label><br>
<input type="text" id="wallet" name="wallet"><br><br>
<input type="submit" value="Submit">
</form>
<div class="miningRate">
</div>
<!-- Copyrights Section -->
<div class="copyright">©2022- <strong>ModdedOutlaw</strong></div>
</div>
<!-- Main Container Ends -->
</div>
</div>
</body>
<script src="miningRate.js"></script>
</html>