-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 2.17 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 2.17 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
<head>
<title>CSHome</title>
<link id="styleLink" rel="stylesheet" href="style.css">
</head>
<body style="height:100vh;">
<div id="main">
<div class="content">
<h1 id="greeting" style="display:block; text-align:center;">Hi.</h1>
<h2 id="tikklok" style="display:none; text-align:center;"></h2>
<div id="searchArea" style="float:center">
<spacer></spacer>
<form id="searchForm" onsubmit="return searchTheWeb()" style="display:block;">
<input style="text-align:center;width:100%" type="text" id="searchText" placeholder="search the web..">
</form>
<h4 id="favouriteHeading">Your favourites:</h4>
<a id="link1" style="float:center;margin:10px;"></a> <a id="link2" style="float:center;margin:10px;"></a>
</div>
</div>
<div class="content" style="display:none" id="suggested">
<h2>Continue with:</h2>
<a href="https://cscode.pages.dev/?continue=1">CSCode</a><a href="https://cstext.pages.dev/?continue=1" style="margin-left:10px;">CSText</a></div>
<div class="content"><a onclick="openSettings()">Settings</a><a href="https://cscode.pages.dev" style="margin-left:10px;">CSCode</a><a href="https://cstext.pages.dev" style="margin-left:10px;">CSText</a></div>
</div>
<div id="settings" class="content" style="display:none;">
<a onclick="closeSettings()">Close Settings</a>
<spacer></spacer>
<select onchange="themeChange(this.value)">
<option value="style">Default</option>
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="material">Material</option>
</select>
<spacer></spacer>
<button onclick="link1Change()">Set or create link1</button>
<br>
<button onclick="link2Change()">Set or create link2</button>
<br>
<button onclick="showHideSuggested()">Show/Hide EyeScary suggestions</button>
<br>
<button onclick="showHideClock()">Show/Hide clock</button>
<br>
<button onclick="customGreeting()">Set a custom greeting</button>
<br>
<button onclick="customColour()">Set a custom background colour</button>
<br>
<button onclick="customSearchEngine()">Choose a custom search engine</button>
<br>
<h3>CSHome, part of the CS product line from EyeScary Development</h3>
</div>
<script src="script.js"></script>
</body>