-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
122 lines (116 loc) · 3.97 KB
/
About.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<link href="./static/css/bootstrap.min.css" rel="stylesheet" media="screen">
<title>About Vocab</title>
<style type="text/css">
.clean {
font-family: 'Open Sans', sans-serif;
vertical-align: middle !important;
}
.jumbotron {
background: white;
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 300;
src: local('Open Sans'), local('OpenSans'), url("./static/fonts/OpenSans.woff") format('woff');
}
.p {
padding: 1%;
}
.m {
margin: 1%;
}
</style>
</head>
<body class="clean">
<div class="container">
<div class="header text-center">
<h2>
<span> <a href="./index.html"> Vocab </a></span>
</h2>
<small> About Vocab </small>
</div>
<div class="container " id="results">
<h3 class="lead">
Motivation
</h3>
<ul class="caption">
<li>Ever wanted to just know what a particular word means?</li>
<li>Ever wanted to just get a gist of a particular term?</li>
</ul>
<p>
We just Google! Right?
</p>
<p>
<div class="lead"> Consequence </div>
<ul class="caption">
<li>Reading more than what's needed</li>
<li>Time sinks</li>
<li>Getting lost in the web of The Web.</li>
</ul>
Vocab is intented to address this problem.
</p>
<h3 class="lead"> What's Vocab </h3>
<p>
Vocab focuses on the Zen of Browsing - Learn just what's needed for now. Just build vocabulary
</p>
<p>
Google for the rest when you have leasure time.
</p>
<p>
Vocab focuses on intuition and cognitive ease of learning. Words, graphs and info graphics over long running hyperlinked texts.
<p>
<p>
Vocab is clutter less learning!
<p>
</div>
<footer>
<div class="navbar navbar navbar-fixed-bottom">
<div class="container">
<div class="navbar-collapse collapse" id="footer-body">
<ul class="nav navbar-nav">
<li><a href="#">About</a>
</li>
<li><a href="#">Contact Us</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<!-- Placed at the end of the document so the pages load faster -->
<script type="text/javascript">
function search() {
var q = $("#search-string").val();
// $("#results").html(q);
$.get("/search?q=" + q, function (data) {
// $( "#results" ).html( data );
var results = "";
if (data.imageURL) {
$("#img").html("<img src='" + data.imageURL + "'>");
}
for (key in data.links) {
var div = " <div> <a href='" + data[key] + "' >" + key + " </a></div>"
results += div;
}
$("#results").html(results);
// alert( "Load was performed." );
});
}
function reset() {
$("#results").html("");
$("#search-string").val("");
$("#img").html("");
$("#search-string").focus();
}
</script>
<script type="text/javascript" src="./static/js/jquery.js">
</script>
<script type="text/javascript" src="./static/js/bootstrap.min.js">
</script>
</body>
</html>