-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
97 lines (97 loc) · 3.67 KB
/
contact.html
File metadata and controls
97 lines (97 loc) · 3.67 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
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" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/contact.css">
<script src="https://kit.fontawesome.com/649eda76c1.js" crossorigin="anonymous"></script>
<script src="script/response.js" charset="utf-8"></script>
<script src="script/theme.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="index.html">Home</a>
<a href="gallery.html">Gallery</a>
<a href="#">Contact</a>
<a href="about.html">About</a>
</nav>
</div>
<div onclick="toggling2()">
<h1>You can contact me via :</h1>
<ul id="myContact">
<li><a href="mailto:jibinjoyjuly1996@gmail.com">jibinjoyjuly1996@gmail.com</a></li>
<li><a href="tel:918848688502">+91 88486 88502</a>, <a href="tel:918078002778">+91 80780 02778</a></li>
</ul>
<h1>Reference</h1>
<div style="margin: 5px">
<img src="img/Image042.jpg" alt="My Mom" width="150px">
<aside>
Who knows me better than I know about myself?! My Mom <br>
<a href="mailto:jjessy55@gmail.com">jjessy55@gmail.com</a>
</aside>
</div>
<div style="clear : both; margin : 5px">
<img src="img/naveen.jpg" alt="pic of Naveen" width="150px">
<aside>
A classmate, friend, partner, Naveen George knows quite a few things about me. You could contact him at:
<ul>
<li><a href="tel:919744481345">+91 97444 81345</a></li>
</ul>
</aside>
</div>
<div style="clear:both; margin:5px">
<img src="img/jithu.jpg" alt="pic of Jithu" width="150px">
<aside>
Just like Naveen, Jithu is also my friend and partner. Connect with him:
<ul>
<li><a href="tel:918921893502">+91 89218 93502</a></li>
<li> <a href="https://www.instagram.com/wandering___explorer/?igshid=11ijk98saxrh8">@wandering___explorer</a></li>
</ul>
</aside>
</div>
</div>
</body>
</html>