-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfontbox.html
46 lines (46 loc) · 1.46 KB
/
fontbox.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
<!DOCTYPE html>
<!--
@desc a page to turn normal text into specially-fonted text
-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>FontBox</title>
<link rel="stylesheet" type="text/css" href="css/fontbox.css" />
</head>
<body>
<div class="row">
<div class="box">
<textarea id="plain" placeholder="Write your text here"></textarea>
</div>
<div class="box">
<textarea id="bold" placeholder="This box will give you the text in bold"></textarea>
</div>
</div>
<div class="row">
<div class="box">
<textarea id="italic" placeholder="This box will give you the text in italic"></textarea>
</div>
<div class="box">
<textarea id="boldtalic" placeholder="This box will give you the text in bold and italics"></textarea>
</div>
</div>
<div class="row">
<div class="box">
<textarea id="gothic" placeholder="This box will give you the text in a gothic font"></textarea>
</div>
<div class="box">
<textarea id="fancy" placeholder="This box will give you the text in a fancy font"></textarea>
</div>
</div>
<div class="row">
<div class="box">
<textarea id="cursive" placeholder="This box will give you the text in cursive"></textarea>
</div>
<div class="box">
<textarea id="sarcasm" placeholder="This box will give you the text in sarcasm-case"></textarea>
</div>
</div>
<script type="text/javascript" src="js/fontbox.browser.js"></script>
</body>
</html>