-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·37 lines (34 loc) · 956 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
<title>The Fancifier</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="wrapper">
<div id="header">
<div class="innerWrapper">
<h1><a href="index.html">The Fancifier</a></h1>
</div>
</div>
<div id="subHead">
<div class="innerWrapper">
<p>This is a description of it</p>
</div>
</div>
<div id="content">
<div class="innerWrapper">
<div id="leftCol">
<textarea rows="20" cols="50" id="text" placeholder="boring text..."></textarea>
<button type="button">Fancify</button>
<button type="button">Ghettofy</button>
<button type="button">Rhymify</button>
</div>
<div id="rightCol">
<textarea rows="20" cols="50" id="translation" placeholder="fancy text!" readonly="readonly"></textarea>
</div>
</div>
</div>
</div>
</body>
</html>