-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EllipticHub | Mathematics</title>
<meta name="description" content="Explore the world of elliptical curve mathematics and enhance your data security with ECC (Elliptic Curve Cryptography). Use our EllipticHub to perform point calculations, algebraic operations, and learn about curve equations, prime numbers, modular arithmetic, and more.">
<meta name="keywords" content="elliptical curve, ECC, cryptography, mathematics, algebra, curve equation, prime numbers, modular arithmetic, point addition, point doubling, torsion point, finite field, elliptic curve calculator, mathematical calculations, security, public key cryptography, encryption, decryption, number theory">
<meta name="author" content="Nilesh Tiwari">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="bingbot" content="index, follow">
<meta name="apple-mobile-web-app-title" content="EllipticHub">
<meta name="application-name" content="EllipticHub">
<meta name="theme-color" content="#0078e7">
<!-- Other meta tags as needed -->
<style>
body{
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>