-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (41 loc) · 1.64 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
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="utf-8">
<title>iRoNiC tExT gEnErAtOr</title>
<meta property="og:title" content="iRoNiC tExT gEnErAtOr" />
<meta name="description" content="Simple ironic text generator made in JS." />
<meta property="og:description" content="Simple ironic text generator made in JS." />
<meta name="author" content="TheForgotten" />
<link rel="image_src" href="favicon.png?" />
<!-- Only works with absolute links, no relative links... -->
<meta property="og:image" content="https://theforgottened.github.io/iRoNiC-tExT-gEnErAtOr/favicon.png" />
<meta property="og:type" content="website" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.png?" />
</head>
<body>
<div id="wrapper" class="clearfix">
<h1>Simple ironic text generator made in JS</h1>
<br>
<br>
<br>
<textarea id="input_text">Type original text here</textarea>
<br>
<textarea id="output_text" readonly="readonly">Converted text here</textarea>
<br>
<div id="bigboi-wrapper">
<div id="checkbox-wrapper">
<input type="checkbox" id="capitalization" name="capitalization" value="capitalization">
<label for="capitalization">Capitalize First Letter</label>
</div>
<br>
<button id="reset_button" type="button">Reset</button>
</div>
<br>
<br>
<br>
<p>Source code for this simple generator <a class="link" target="_blank" href="https://github.com/TheForgottened/iRoNiC-tExT-gEnErAtOr">here</a>.</p>
<script src="js/scripts.js"></script>
</div>
</body>
</html>