-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (49 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
63 lines (49 loc) · 1.78 KB
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
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<title>WikiBardia | A Shakespeare Translator for Wikipedia</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<!-- Header -->
<header class='essays-font center-text'>
<h1>WikiBardia</h1>
<p>A Shakespeare Translator for Wikipedia.</p>
<p>'Cause, you know, everybody needs one.</p>
</header>
<!-- Main Columns -->
<main>
<div class='wrapper'>
<!-- Wikipedia Form & Output -->
<section id='wiki-getter' class='sans-serif flex-item rounded'>
<h1>Wikipedia Article</h1>
<div id="wiki-output">
<form>
<div class="form-grp">
<label for='wiki-search'>Enter Wikipedia search term:</label>
<input id='wiki-search' type="text" placeholder="try 'hello world'">
</div>
<button type="button" id='search'>Search</button>
</form>
<div id='search-status'></div>
</div> <!-- /wiki-output -->
</section> <!-- /Wikipedia -->
<!-- Shakespeare Output -->
<section id='shakes-getter' class='essays-font flex-item'>
<h1>Translation from the Bard</h1>
<div id='shakes-output'>
</div>
</section> <!-- / Shakespeare -->
</div> <!-- /wrapper -->
<!-- Footer -->
<footer id='main-footer' class='sans-serif center-text rounded-mobile'>
<p>A project by mediocre writer and anachronistic font afficionado Ken Farrell. </p>
<p><a href='https://github.com/kenwrites'>Find me on Github</a>.</p>
</footer>
</main>
<script src="js/scripts.js"></script>
</body>
</html>