-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (64 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Web title -->
<title>Home Page</title>
<!-- Web Responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Web SEO -->
<meta name="title" content="Home Page">
<meta name="description" content="Brave New Tab">
<meta property="og:type" content="website">
<meta property="og:url" content="https://vinsdev.xyz/newtab">
<meta property="og:title" content="Home Page">
<meta property="og:description" content="Brave New Tab">
<meta property="og:image" content="./img/logo.png">
<meta property="twitter:url" content="https://vinsdev.xyz/newtab">
<meta property="twitter:title" content="Home Page">
<meta property="twitter:description" content="Brave New Tab">
<meta property="twitter:image" content="./img/logo.png">
<!-- Web Style -->
<link rel="stylesheet" type="text/css" href="./css/styles.css">
</head>
<body>
<!-- Code -->
<div class="user">
<h1 class="user-name">Hi, Cohl Bingham.</h1>
<p class="user-quotes" id="quotes"></p>
</div>
<div class="search">
<form id="form">
<input class="sc-input" id="input" autocomplete="off" type="search" placeholder="Search some stuff">
<button class="sc-button" type="submit">Go!</button>
</form>
</div>
<div class="navigation">
<div class="clock">
<div class="time" id="time">00:00 AM/PM</div>
</div>
<div class="navs">
<div class="nav" title="Your github profile" onclick="winOpen('github')">
Github
</div>
<div class="nav" title="Your github notification" onclick="winOpen('github-notif')">
Github Notification
</div>
<div class="nav" title="Your gmail" onclick="winOpen('gmail')">
Gmail
</div>
<div class="nav" title="Your youtube channel" onclick="winOpen('youtube-channel')">
YouTube
</div>
<div class="nav" title="Your website" onclick="winOpen('own')">
VinsDev
</div>
</div>
</div>
<div class="cr">
<p class="cr-text">Make by <a href="https://vinsdev.xyz">Vins 2106</a></p>
</div>
<!-- Script -->
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>