-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 2.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- ****** faviconit.com favicons ****** -->
<link rel="shortcut icon" href="icons/icon.ico">
<link rel="icon" sizes="16x16 32x32 64x64" href="icons/icon.ico">
<link rel="icon" type="image/png" sizes="196x196" href="icons/icon-192.png">
<link rel="icon" type="image/png" sizes="64x64" href="icons/icon-64.png">
<link rel="icon" type="image/png" sizes="32x32" href="icons/icon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="icons/icon-16.png">
<link rel="apple-touch-icon" sizes="72x72" href="icons/icon-72.png">
<link rel="apple-touch-icon" sizes="120x120" href="icons/icon-120.png">
<link rel="apple-touch-icon" sizes="180x180" href="icons/icon-180.png">
<!-- ****** faviconit.com favicons ****** -->
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<script src="https://unpkg.com/clipboard@2/dist/clipboard.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
<script src="main.js" defer></script>
<title>The Fine Print</title>
</head>
<body>
<header>
<h1>The Fine Print</h1>
<h2>Easily write superscripts and subscripts</h2>
</header>
<main>
<div id="step1" class="step">
<span class="item">Step 1: What do you want to super/subscript?</span> <br>
<input type="text" id="original" v-model:value="input">
</div>
<div id="step2" class="step">
<span class="item">Step 2: Do you want a superscript or a subscript?</span>
<br>
<label>
<input type="radio" name="choice" value="sub" v-model="type">
<span class="mock-radio"></span>
Subscript.
</label>
<br>
<label>
<input type="radio" name="choice" value="sup" v-model="type">
<span class="mock-radio"></span>
Superscript.
</label>
</div>
<div id="step3" class="step">
<span class="item">Step 3: Copy the text below!</span>
<br>
<div id="output-container">
<div id="output">{{ converted }}</div>
<span id="copy-button" data-clipboard-target="#output">📎 Copy</span>
</div>
</div>
</main>
<footer>
<span id="info-icon">ⓘ</span>
<span id="information">
By: Tiago Macedo — To: Everyone with no time to mess with Unicode — Using: Vue.js
</span>
</footer>
</body>
</html>