-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbucket_list.html
48 lines (47 loc) · 1.83 KB
/
bucket_list.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
<!DOCTYPE html>
<html>
<head>
<title>
My Bucket List
</title>
<link rel="stylesheet" href = "bucket_list.css">
</head>
<body>
<div class = "navbar">
<hr>
<a href = "index.html">Home</a>
<a href = "MagicalBlog.html">The Magical Blog</a>
<a href = "AboutMe.html">About Me</a>
<a href = "InterestingStories.html">Interesting Stories</a>
<a href = "https://www.khanacademy.org/profile/anshc/projects">Cool Stuff</a>
<a href = "Secrets.html">Some Secrets (Shh)</a>
<a href = "course_timetable.html">IIIT-H</a>
<a href = "bucket_list.html">Bucket List :)</a>
<hr>
</div>
<div id = "container">
<div class = "title">
<h1>My Bucket List</h1>
</div>
<div class = "description">
Here are some things which I want to do/experience in my life. Please <a class = "get_in_touch" href = "https://anshium.github.io/say_it_out">let me know</a> if there are any recommendations.
</div>
<div class = "list" onload="tickify()">
<ol>
<li class = "not_done">☐ See a sky full of visible celestial bodies.</li>
<li class = "not_done">☐ Travel to Vietnam by road.</li>
<li class = "not_done">☐ Teach an undergraduate course as a faculty.</li>
<li class = "not_done">☐ Learn the tabla to mastery level 6.</li>
<li class = "not_done">☐ Build a fully functional hexapod.</li>
<li class = "not_done">☐ Visit Sindh.</li>
<li class = "not_done">☐ Drive to a far-off hill station from Delhi by yourself.</li>
<li class = "yes_done">☑ <s>Write a book.</s> (Wrote a science-fiction novel)</li>
<li class = "not_done">☐ Publish a book.</li>
<li class = "not_done">☐ Observe Jupiter and Saturn with a telescope.</li>
<li class = "not_done">☐ Make true friends</li>
</ol>
</div>
</div>
<script src="bucket_list.js"></script>
</body>
</html>