-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuntext.html
29 lines (29 loc) · 978 Bytes
/
funtext.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Adriel Dinelli">
<meta name="viewport" content="width=device-width, initial-scale=1.0, min-scale=1">
<title>Funtext</title>
<link rel="stylesheet" type="text/css" href="funtext.css">
<script type="text/javascript" src="funtext.js"></script>
</head>
<body>
<div id="container">
<input id="input" type="text" placeholder=">> Insert text here! <<"/>
<div id="modes_container">
<button type="button" class="option_button selected" id="mirror">Mirror</button>
<button type="button" class="option_button" id="abc">Abc to Zyx</button>
<button type="button" class="option_button" id="gray">Grey Scale</button>
</div>
<div id="output_container">
<p id="output"></p>
</div>
</div>
<div id="footer_container">
<div id="copyright_notice">
<p>Copyright ©<span id="current_year">2016</span> Adriel Dinelli</p>
</div>
</div>
</body>
</html>