-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (72 loc) · 3.68 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
75
76
<html>
<head>
<meta charset="utf-8">
<title>ASCII Table</title>
<link rel="icon" type="image/png" href="favicon_io/favicon.ico">
<link rel="stylesheet" href="main.css"></style>
<script src="main.js"></script>
<link rel="stylesheet" href="bootstrap.min.css">
<!-- Fathom - beautiful, simple website analytics -->
<script src="https://cdn.usefathom.com/script.js" data-site="PBVKOQLC" defer></script>
<!-- / Fathom -->
</head>
<body>
<div class="buttonContainer">
<button id="showTableButton" class="tableButton">Table</button>
</div>
<div id='container'>
<div class="flex-item" id="char">Enter an ASCII character to start</div>
<div id="mobile-input"></div>
<div class="flex-container">
<div class="flex-item card">
<div class="card-header">Decimal</div>
<div class="card-body">
<div id="dec"></div>
</div>
</div>
<div class="flex-item card">
<div class="card-header">Hexadecimal</div>
<div class="card-body">
<div id="hex"></div>
</div>
</div>
<div class="flex-item card">
<div class="card-header">Octal</div>
<div class="card-body">
<div id="oct"></div>
</div>
</div>
<div class="flex-item card">
<div class="card-header">Binary</div>
<div class="card-body">
<div id="bin"></div>
</div>
</div>
<div class="flex-item card">
<div class="card-header">HTML</div>
<div class="card-body">
<div id="html"></div>
</div>
</div>
</div>
</div>
<div class="flex-container">
<div id="asciiTable" class="hidden">
</div>
</div>
<footer>
<p>Made by <a href="https://seannam.com" target="_blank">Sean Nam</a>, inspired by <a href="https://wesbos.com/" target="_blank">Wes Bos's</a> <a href="http://keycode.info" target="_blank">keycode.info</a></p>
<div>
<!-- <iframe src="https://ghbtns.com/github-btn.html?user=seannam&repo=asciitable&type=star&count=true" frameborder="0" scrolling="0" width="150" height="20" title="GitHub"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=seannam&repo=asciitable&type=watch&count=true&v=2" frameborder="0" scrolling="0" width="150" height="20" title="GitHub"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=seannam&repo=asciitable&type=fork&count=true" frameborder="0" scrolling="0" width="150" height="20" title="GitHub"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=seannam&type=follow&count=true" frameborder="0" scrolling="0" width="170" height="20" title="GitHub"></iframe> -->
<!-- <iframe src="https://ghbtns.com/github-btn.html?user=seannam&type=sponsor" frameborder="0" scrolling="0" width="150" height="20" title="GitHub"></iframe> -->
</div>
<br />
<div>
<a href="https://twitter.com/nam_sean?ref_src=twsrc%5Etfw" class="twitter-follow-button" data-show-count="false">Follow @nam_sean</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</footer>
</body>
</html>