-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_tab.html
39 lines (35 loc) · 994 Bytes
/
new_tab.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/new_tab.css">
<title>Neuer Tab</title>
</head>
<body>
<div id="mainContainer">
<div id="clockContainer">
<!-- Span element for the clock -->
<span id='clock'></span>
<!-- Div for the greetings-->
<div id="greetings">
Good <span id="period">day, wonderful human.</span>
</div>
</div>
<!--Div for the Quotes-->
<div id="quotes">
<span id="quote"></span>
</div>
</div>
<!-- Footer with Main-Information -->
<div id="footer">
<a href="https://git.nivram710.de/Nivram710/New-Tab-Chrome-Extension">Sourcecode</a> | Version 1.0 | Marvin
Jütte
</div>
<!-- Bind all scripts -->
<script src="js/const.js"></script>
<script src="js/clock.js"></script>
<script src="js/greetings.js"></script>
<script src="js/background.js"></script>
<script src="js/quotes.js"></script>
</body>
</html>