-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (22 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Dashboard</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css" type="text/css" >
<link href="https://fonts.googleapis.com/css?family=Cormorant+Unicase|Gugi" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<h1 id="time" class="head">time</h1>
<h2 id="date" class="head">date</h2>
<div class="weather"></div>
<p id="up" class="style"></p>
<div class="money style"></div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.ajax-cross-origin.min.js"></script>
<!-- Your Javascript -->
<script src="script.js"></script>
</body>
</html>