forked from unicorncoding/monotext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (31 loc) · 1.24 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Monotext</title>
<meta name="description" content="Convert standard text into unicode monotext">
<meta name="author" content="Coding Unicorn">
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
</head>
<body>
<div class="container section" id="app">
<div class="columns is-mobile is-centered">
<div class="column is-half">
<h2 class="subtitle">Turn text into unicode 𝚖𝚘𝚗𝚘𝚝𝚎𝚡𝚝.</h2>
<hr>
<textarea class="textarea" v-model="text" placeholder="start typing..."></textarea>
</div>
</div>
<div class="columns is-mobile is-centered">
<div class="column is-half">
<textarea class="textarea" v-model="monotext" readonly></textarea>
<br>
<h2 class="subtitle is-7 has-text-right">Made by <strong><a href="https://instagram.com/coding_unicorn">Coding Unicorn</a></strong> 🦄 </h2>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>