-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 3.04 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 3.04 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Page</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/home.css">
<script src="https://kit.fontawesome.com/649eda76c1.js" crossorigin="anonymous"></script>
<script src="script/theme.js" charset="utf-8"></script>
<script src="script/response.js" charset="utf-8"></script>
<script>
if(!document.cookie)
{
let hr = new Date().getHours();
if((hr > 18) || (hr < 06))
{
document.getElementsByTagName('link')[0].setAttribute('href', 'style/dark.css');
}
else {
document.getElementsByTagName('link')[0].setAttribute('href', 'style/style.css');
}
}
else {
if(document.cookie.search("light") != -1)
{
document.getElementsByTagName('link')[0].setAttribute('href', 'style/style.css');
}
else if (document.cookie.search("dark") != -1)
{
document.getElementsByTagName('link')[0].setAttribute('href', 'style/dark.css');
}
else if (document.cookie.search("night") != -1)
{
document.getElementsByTagName('link')[0].setAttribute('href', 'style/night.css');
}
}
</script>
</head>
<body>
<div class="Header">
<div class="theme">
Choose Your Theme :
<label class="switch">
<input type="radio" name="theme" value="light" onclick="changetheme(this.value)"/>Light 🌞  
</label>
<label class="switch">
<input type="radio" name="theme" value="dark" onclick="changetheme(this.value)"/>Dark 🖥  
</label>
<label class="switch">
<input type="radio" name="theme" value="night" onclick="changetheme(this.value)"/>Night 🦉
</label>
</div>
<button class="menu_button" id="mb" onclick="toggling()"><i style="font-size:48px;" class="fas fa-bars fa-3x"></i></button>
<nav id="main" class="main">
<a href="#">Home</a>
<a href="gallery.html">Gallery</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
</nav>
</div>
<img src="img/my_pic_edited.jpg" alt="Pic of Myself"/>
<aside onclick="toggling2()">
<h1>JIBIN JOY</h1>
Welcome to my Page. I'm from Kerala, South India; Graduated in B-tech from Kerala University;
love to code and do geeky things. Until now, I have learned few modules in Python
viz. Pandas, Numpy, BeautifulSoup, Selenium, thanks to <a target="_blank" href="https://www.dr-chuck.com/">Charles Severance</a> and <a target="_blank" href="https://www.coursera.org/in">Coursera</a> 😇.
Apart from Python, I strive forward to be a Front-End developer and learned HTML, CSS and JavaScript, thanks to <a target="_blank" href="http://www.collemc.people.si.umich.edu/">Colleen Van Lent</a>.
<p>Continue exploring my page and contact me if you have any queries😊.</p>
</aside>
</body>
</html>