-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (65 loc) · 2.28 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
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
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="apple-touch-icon" href="./images/favicon.png" />
<!-- favicons-->
<link rel="shortcut icon" href="./images/favicon.png" type="image/png" />
<link rel="icon" href="./images/favicon.png" type="image/png" />
<meta
name="description"
content="Logarithm calculator: calculate log to base n"
/>
<meta name="title" content="Logworld: Logarithm calculator" />
<meta name="author" content="King Elisha" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://logworld.skyblazar.com" />
<meta property="og:title" content="Logworld: Logarithm calculator" />
<meta
property="og:description"
content="Logarithm calculator: calculate log to base n"
/>
<meta
property="og:image"
content="https://logworld.skyblazar.com/images/ps.png"
/>
<!-- Twitter -->
<meta
property="twitter:card"
content="https://logworld.skyblazar.com/images/ps.png"
/>
<meta property="twitter:url" content="https://logworld.skyblazar.com" />
<meta property="twitter:title" content="Logworld: Logarithm calculator" />
<meta
property="twitter:description"
content="Logarithm calculator: calculate log to base n"
/>
<meta
property="twitter:image"
content="https://logworld.skyblazar.com/images/ps.png"
/>
<title>Log World: Logarithm calculator</title>
<link rel="stylesheet" href="./styles/styles.css" />
<link rel="stylesheet" href="./styles/mathquill.css" />
</head>
<body>
<div class="container">
<h1>Log World</h1>
<div class="calc">
<small>Calculate <strong>log</strong></small>
<div class="form">
<span id="math"></span>
</div>
<div id="error"></div>
</div>
<button id="calculate">Calculate</button>
<div id="calculating"></div>
<div id="answer">👻</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="./js/mathquill.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>