-
Notifications
You must be signed in to change notification settings - Fork 0
/
startpage.html
84 lines (83 loc) · 2.72 KB
/
startpage.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8"/>
<title>Start page</title>
<link rel="shortcut icon" type="image/x-con" href="doge.jpg"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body id="docBody">
<div id="clock"></div>
<div class="main" style="margin-top: 35px;" id="search">
<div id="settingsPaneOverlay" title="Open settings"></div>
<div class="settingsPane">
<div
class="option"
title="Settings"
open="false"
id="settingsMenu">
<a href="#"><img src="img/settingsIconNew.png" alt="settingsIcon"></a>
</div>
</div>
<div class="wrap" id="searchWrapBlock">
<div class="searchBlock">
<button class="dropbtn" id="searchEngineChooseButton">
Google
</button>
<div id="searchOptionsDropDown"
name="availableDropDownOptions"
class="availableDropDownOptions">
</div>
<form
action="https://www.google.by/search"
type="get"
id="searchForm"
target="_blank">
<div class="input-group">
<input
id="searchInputField"
class=""
type="text"
name="q"
size="31"
placeholder="Your query here..."/>
<div class="regularButton"
id="initSearchButton"
title="Search results will be opened in a new window">Search
</div>
</div>
</form>
</div>
</div>
</div>
<div class="main" id="searchHistory">
<h4 class="wrap">Recent searches</h4>
<div id="searchHistoryEnclosure" class="wrap">
<ul id="userSearchHistoryList"></ul>
</div>
</div>
<div class="main" id="sectionArea">
<div class="wrap" id="mainArea"></div>
</div>
<div class="main">
<div class="wrap">
<div class="newSection">
<input type="text"
name="newSectionName"
id="newSectionName"
value=""
placeholder="New section name">
<a href="">
<div
class="linkTile addNew addNewSection"
id="null"
title="Create new section"></div>
</a>
</div>
</div>
</div>
<div id="overlay"></div>
<script type="text/javascript" src="pageEngline.js"></script>
<script type="text/javascript" src="time.js"></script>
</body>
</html>