-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcounterSink.html
39 lines (34 loc) · 1.2 KB
/
counterSink.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
<!-- By 0xRar-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countersink Calculator</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<header>
<ul>
<img id="logo" src="assets/img.png">
<h1>90° Countersink Calculator</h1>
</ul>
</header>
<b id="credit">
by <a target="_blank" href="http://0xrar.net">0xRar</a>
</b>
<div id="inputs">
<label for="InsideSize">Inside Size: </label><br>
<input placeholder="e.g 10" type="number" id="InsideSize">
<br><br>
<label for="OutsideSize">Outside Size: </label><br>
<input placeholder="e.g 10" type="number" id="OutsideSize">
<br><br>
<button type="button" class="btns" id="submitBtn">Submit</button>
<button type="button" class="btns" id="reloadBtn">Reload</button>
</div>
</body>
<script src="assets/script.js"></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</html>