-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.28 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Word Spy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" href="icon.ico" type="image/gif" sizes="16x16">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header" >
<a class="navbar-brand" href="#">Word Spy 0.0</a>
</div>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1>Word Spy</h1>
<p>Find interesting patterns from the text!</p>
</div>
<form>
<div class="form-group">
<label for="text">Dump the text below :</label>
<textarea class="form-control" rows="10" id="text"></textarea>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<p> </p>
<p class ="row" id="copyright">
<span class="glyphicon glyphicon-copyright-mark"></span> ChinmayGo
</p>
</div>
</body>
</html>