-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.html
81 lines (76 loc) · 2.59 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
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="icon" href="fav.png">
<title>Tea Green</title>
</head>
<body>
<div class="tilt" data-tilt data-tilt-max="5" data-tilt-speed="3000" data-tilt-perspective="500"
data-tilt-reverse="true">
<div class="card">
<div class="buttons">
<input type="checkbox" class="chb_theme" id="switch_theme">
<label class="btn_theme" for="switch_theme"></label>
<input type="checkbox" class="chb_weather" id="switch_weather">
<label class="btn_weather" for="switch_weather"></label>
<input type="checkbox" class="chb_todo" id="switch_todo">
<label class="btn_todo" for="switch_todo"></label>
</div>
<div class="weather-card">
<div class="weather-card__info">
<i id="icon"></i>
<p id="description"></p>
<p id="temp"></p>
</div>
<input id="city" type="text" placeholder="enter the name of the city" autocomplete="off">
<input id="key" type="text" placeholder="add your api key" autocomplete="off">
</div>
<div class="todo-card">
<form class="todo-card__form">
<input id="todo" placeholder="what needs to be done?" class="todo-card__form-input" type="text"
autocomplete="off">
</form>
<ul class="todo-card__list"></ul>
</div>
<div class="content">
<div class="links">
<a href="https://twitter.com/" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/feed/subscriptions" target="_blank">
<i class="fab fa-youtube"></i>
</a>
<a href="https://mail.google.com/mail/ca/u/1/#inbox" target="_blank">
<i class="fas fa-inbox"></i>
</a>
<a href="https://www.reddit.com/r/news/" target="_blank">
<i class="fas fa-newspaper"></i>
</a>
<a href="https://open.spotify.com/browse/featured" target="_blank">
<i class="fab fa-spotify"></i>
</a>
<a href="https://www.twitch.tv/" target="_blank">
<i class="fab fa-twitch"></i>
</a>
<a href="https://www.github.com/" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.reddit.com/" target="_blank">
<i class="fab fa-reddit"></i>
</a>
</div>
<div class="search">
<input id="searchbox" placeholder="-d | -y | -w | -r | -h" type="text" autocomplete="off">
</div>
</div>
</div>
</div>
<script src="js/theme.js"></script>
<script src="js/weather.js"></script>
<script src="js/todo.js"></script>
<script src="js/search.js"></script>
<script src="js/vanilla-tilt.js"></script>
</body>
</html>