-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewtab.html
executable file
·99 lines (98 loc) · 4.86 KB
/
newtab.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>New Tab</title>
<link rel="stylesheet" href="styles.css">
<link href="favicon.png" rel="shortcut icon" type="image/x-icon" />
<script src="script.js"></script>
</head>
<body>
<!-- <audio loop autoplay>
<source src="legend.mp3" type="audio/mpeg">
</audio> -->
<div class="container">
<div id="date"></div>
<div id="clock"></div>
<div class="row">
<input type="text" class="google_search" placeholder="Search Google..." >
</div>
<br>
<div class="welcome-container">
<div class="row">
<div id="welcome-description"class="inline"></div>
<div class="inline"> Welcome Master <span class="bigFont">Ꚃoʋʳᥑᕓ_ </span><span class="redColorSpan"> (^_^)</span></div>
<div id="temp" class="inline"></div>
</div>
</div>
<div class="bookmark-container">
<div class="bookmark-set">
<div class="bookmark-title"><a href="" style="color:hotpink; text-decoration: none;">Daily</a></div>
<hr>
<div class="bookmark-inner-container">
<a class="bookmark" href="https://youtube.com" target="_blank">Youtube</a>
<a class="bookmark" href="https://amazon.in" target="_blank">Amazon</a>
<a class="bookmark" href="https://katcr.co/" target="_blank">Katcr</a>
<a class="bookmark" href="https://drive.google.com/" target="_blank">Drive</a>
</div>
</div>
<div class="bookmark-set">
<div class="bookmark-title"><span style="color:rgb(56, 177, 247)">Social</span></div>
<hr>
<div class="bookmark-inner-container">
<a class="bookmark" href="https://inbox.google.com/" target="_blank">Inbox</a>
<a class="bookmark" href="https://fb.com/" target="_blank">Facebook</a>
<a class="bookmark" href="https://twitter.com/" target="_blank">Twitter</a>
<a class="bookmark" href="https://instagram.com/" target="_blank">Instagram</a>
<a class="bookmark" href="https://keep.google.com/" target="_blank">G-Keep</a>
</div>
</div>
<div class="bookmark-set">
<div class="bookmark-title"><a href="https://reddit.com/" style="color:rgb(255, 102, 0); text-decoration: none; ">Reddit.com</a></div>
<hr>
<div class="bookmark-inner-container">
<a class="bookmark" href="https://reddit.com/r/linux" target="_blank">/r/linux</a>
<a class="bookmark" href="https://reddit.com/r/unixporn" target="_blank">/r/unixporn</a>
<a class="bookmark" href="https://reddit.com/r/news" target="_blank">/r/news</a>
</div>
</div>
<div class="bookmark-set">
<div class="bookmark-title"><span style="color:rgb(6, 243, 25)">Pie-Rate</span></div>
<hr>
<div class="bookmark-inner-container">
<a class="bookmark" href="" target="_blank">1HC</a>
<a class="bookmark" href="" target="_blank">Fco</a>
<a class="bookmark" href="" target="_blank">FT</a>
<a class="bookmark" href="" target="_blank">Kiss Anime</a>
<a class="bookmark" href="" target="_blank">Anime Ep</a>
</div>
</div>
</div>
<div class="bookmark-container">
<div class="bookmark-set">
<div class="bookmark-title"><span style="color:burlywood">Torrent</span></div>
<hr>
<div class="bookmark-inner-container">
<a class="bookmark" href="" target="_blank">1337x</a>
<a class="bookmark" href="" target="_blank">Katcr</a>
<a class="bookmark" href="" target="_blank">YTS</a>
<a class="bookmark" href="" target="_blank">TR SRC ENG</a>
<a class="bookmark" href="" target="_blank">EDU TOR</a>
<a class="bookmark" href="" target="_blank">z00glE</a>
</div>
</div>
<div class="bookmark-set">
<div class="bookmark-title"><span style="color:white">To Do List</span></div>
<hr>
<div class="bookmark-inner-container" style="font-size: 20px;font-style: italic;">
<ul id="toDolist">
</ul>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- THIS IS THE PAGE -->