-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·32 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>New Tab Clock</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/sweetalert.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="clock-wrap">
<div class="clock">
<h4 id="bookmarks"></h4>
<form id="search" class="fadein" method="GET" action="https://www.google.co.id/search">
<input type="text" id="search-box" name="q" placeholder="Search Google" autofocus>
</form>
<h1 id="timedate" class="fade-in one"></h1><h1 id="ampm" class="fade-in two"></h1>
<p id="greetings" class="fade-in three"></p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bookmarks.js"></script>
<script src="js/content.js"></script>
<body>
</html>