-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (72 loc) · 2.73 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
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>New tab</title>
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
<link rel="preload" as="font" href="fonts/Fira Code Regular Nerd Font Complete.woff2" type="font/woff2"
crossorigin="anonymous" />
<script defer src="scripts/time.js"></script>
<script defer src="scripts/script.js"></script>
<script defer src="scripts/popup.js"></script>
<script defer src="scripts/keybinding.js"></script>
</head>
<body>
<div class="container">
<div class="img-holder">
<img src="images/startpage.png" alt="Startpage image" id="startImg" />
<div class="time-container" id="time">00<br />--<br />00</div>
</div>
<div class="main">
<h1 class="greeting" id="username">Welcome, Angel</h1>
<h2 id="today">Today is someday</h2>
<div class="searchbox">
<input type="search" id="search" />
<button id="searchButton"></button>
</div>
<div class="bookmarks">
<div class="bookmarks-row">
<a href="https://youtube.com">YouTube</a>
<a href="https://discord.com/app">Discord</a>
<a href="https://open.spotify.com/">Spotify</a>
</div>
<div class="bookmarks-row">
<a href="https://github.com">Github</a>
<a href="https://gmail.com">Gmail</a>
<a href="https://www.codewars.com/">Codewars</a>
</div>
<div class="bookmarks-row">
<a href="https://reddit.com">Reddit</a>
<a href="https://instagram.com/">Instagram</a>
<a href="https://x.com/?lang=en">Twitter</a>
</div>
</div>
</div>
<dialog id="settings" class="modal">
<h2>Settings</h2>
<div class="field">
<label for="titleSel">Title</label>
<input class="input-field" type="text" id="titleSel" placeholder="Title for the startpage" value="New Tab" />
</div>
<div class="field">
<label for="userSel">Username</label>
<input class="input-field" type="text" id="userSel" placeholder="Username" value="Angel" />
</div>
<div class="field">
<label for="imgSel">Image</label>
<input class="input-field" type="text" id="imgSel" placeholder="Image in the startpage"
value="images/startpage.png" />
</div>
<div class="field">
<label for="engineSel">Search Engine</label>
<select class="input-field" name="engine" id="engineSel">
<option value="google" selected>Google</option>
<option value="duckduckgo">Duck Duck Go</option>
</select>
</div>
<form method="dialog">
<input class="btn" type="submit" name="savePref" value="Save" id="savePref" />
</form>
</dialog>
</div>
</body>
</html>