-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (92 loc) · 4.18 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lakshmaan's Dashboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="heading">Lakshmaan's Dashboard</h1>
<div class="box">
<div class="favapps">
<h1>Favourite apps</h1>
<div class="apps">
<div class="app">
<a target="_blank" href="https://www.youtube.com/">
<img src="https://static.vecteezy.com/system/resources/previews/003/399/771/original/youtube-icon-editorial-free-vector.jpg"
alt="">
</a>
</div>
<div class="app">
<a target="_blank" href="https://docs.google.com/document/u/0/">
<img src="https://play-lh.googleusercontent.com/emmbClh_hm0WpWZqJ0X59B8Pz1mKoB9HVLkYMktxhGE6_-30SdGoa-BmYW73RJ8MGZQ"
alt="">
</a>
</div>
<div class="app">
<a target="_blank" href="https://web.whatsapp.com/">
<img src="https://cdn-icons-png.flaticon.com/512/174/174879.png">
</a>
</div>
<div class="app">
<a target="_blank" href="https://drive.google.com/drive/u/0/my-drive">
<img src="https://s38924.pcdn.co/wp-content/uploads/2018/03/Google-Drive-logo.png" alt="">
</a>
</div>
<div class="app">
<a target="_blank" href="https://docs.google.com/forms/u/0/">
<img src="https://w7.pngwing.com/pngs/709/627/png-transparent-google-docs-form-google-purple-violet-text-thumbnail.png"
alt="">
</a>
</div>
<div class="app">
<a target="_blank" href="https://docs.google.com/presentation/u/0/">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSHYM9Q_LcTsLZm2zwBRJ5qK50AvBdwlLzJies3tkDrV83OKq3BgRie8TcAT0Osc5cRHGo&usqp=CAU"
alt="">
</a>
</div>
<div class="app">
<a target="_blank" href="https://www.amazon.com/ref=nav_logo">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Amazon_icon.svg/2500px-Amazon_icon.svg.png"
alt="">
</a>
</div>
<div class="app">
<a target="_blank" href="https://classroom.google.com/u/0/h">
<img src="https://seekvectors.com/files/download/04ab4d812e24c69f94983768c4f89c4c.jpg" alt="">
</a>
</div>
</div>
</div>
<div class="notes">
<div class="todo">
<h1>To Do</h1>
<div class="task">
<input type="checkbox"><input class="mytask" type="text">
</div>
<div class="task">
<input type="checkbox"><input class="mytask" type="text">
</div>
<div class="task">
<input type="checkbox"><input class="mytask" type="text">
</div>
<div class="task">
<input type="checkbox"><input class="mytask" type="text">
</div>
<div class="task">
<input type="checkbox"><input class="mytask" type="text">
</div>
<div class="task">
<input type="checkbox"><input class="mytask" type="text">
</div>
</div>
<div class="notepad">
<h1>Notes</h1>
<textarea name=" " cols="40" rows="20"></textarea>
</div>
</div>
</div>
</body>
</html>