-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (67 loc) · 3.57 KB
/
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
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
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles/normalize.css">
<!--<link rel="stylesheet" href="styles/style.css">-->
<link rel="stylesheet" href="styles/font-awesome.min.css">
<link href="styles/animate.css" rel="stylesheet">
<!--<link rel="stylesheet" href="styles/bootstrap.min.css">-->
<link rel="stylesheet" href="styles/template.css">
</head>
<body>
<div class="overlay js-overlay hidden"></div>
<div id="popover-content" class="hide">
<form class="form-inline" role="form">
<div class="form-group">
<input class="headerSearch search-query" id="str" name="str" type="text" placeholder="Search..." />
<span class="glyphicon glyphicon-search" style="margin:3px 8px 0 -20px;"></span>
<input class="btn btn-primary btn-xs" id="phSearchButton" type="submit" value="Search" />
<input class="btn btn-primary btn-xs" id="searchButton" type="submit" value="Dictionary" />
</div>
</form>
</div>
<div class="">
<div><h2>Some test page</h2>
<form action="" method="" id="search" name="search">
<input name="query" id="query" type="text" size="30" maxlength="30">
<input name="searchit" type="button" value="Search" onClick="">
</form></div>
<div id="searchtext" class="searchtext">
<div>JavaScript is the programming language of the Web. The overwhelming majority of
modern websites use JavaScript, and all modern web browsers—on desktops, game
consoles, tablets, and smart phones—include JavaScript interpreters, making Java-
Script the most ubiquitous programming language in history. JavaScript is part of the
triad of technologies that all Web developers must learn: HTML to specify the content
of web pages, CSS to specify the presentation of web pages, and JavaScript to specify
the behavior of web pages. This book will help you master the language.
</div>
<br>
<div>If you are already familiar with other programming languages, it may help you to know
that JavaScript is a high-level, dynamic, untyped interpreted programming language
that is well-suited to object-oriented and functional programming styles. JavaScript
derives its syntax from Java, its first-class functions from Scheme, and its prototypebased
inheritance from Self. But you do not need to know any of those languages, or
be familiar with those terms, to use this book and learn JavaScript.
</div>
<br>
<div>The name "JavaScript" is actually somewhat misleading.
<span>Except</span>
for a superficial syntactic
resemblance, JavaScript is completely different from the Java programming language.
And JavaScript has long since outgrown its scripting-language roots to become
a robust and efficient general-purpose language. The latest version of the language (see
the sidebar) defines new features for serious large-scale software development.
</div>
<br>
</div>
<script src="./libraries/jquery-1.11.3.min.js"></script>
<script src="./libraries/knockout-3.4.0.js"></script>
<script src="./libraries/bootstrap.min.js"></script>
<!--<script src="scripts/utils.js"></script>-->
<!--<script src="scripts/plugin.js"></script>-->
<script src="./libraries/jquery.lettering.js"></script>
<script src="./libraries/jquery.textillate.js"></script>
</div>
<!--<button class="submit">submit order</button>-->
</body>
</html>