-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
98 lines (93 loc) · 3.51 KB
/
contact.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
98
<!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">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bulma.min.css">
<link href="font-awesome/css/all.css" rel="stylesheet">
<link rel="shortcut icon" type="image/jpg" href="favicon.png" />
<link rel="manifest" href="webmanifest.json">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black">
<meta name="description" content="Contact Me">
<meta name="keywords" content="Shrirang Kahale, Albony , AlbonyCal , albonycal , shrirang">
<meta property="og:site_name" content="Shrirang Kahale">
<meta name="og:title" content="Contact">
<meta name="og:description" content="Contact Me">
<meta name="og:image" itemprop="image" content="favicon.png">
<link rel="bookmark" href="favicon.png">
<script defer data-domain="shrirangkahale.com" src="https://plausible.albony.xyz/js/plausible.js"></script>
<title>Contact</title>
</head>
<style>
html {
overflow-y: hidden;
}
#hom:hover {
cursor: pointer;
}
#idk {
color: ivory;
}
#source:hover {
text-decoration: underline;
color: #ff5555;
}
</style>
<body>
<center>
<div class="section container">
<div class="title is-2" onclick="home()" id="hom" style="top: 5vh;position: relative;"><img
src="Albony_clear.png" width=64 alt="al"><span id="title">Shrirang Kahale</span></div>
</div>
<header>
<nav>
<ul id="bar">
<li><a id="menuwu" href="index.html">Home</a></li>
<li><a id="menuwu" class="now" href="https://blog.albony.xyz/">Blog</a></li>
<li><a id="menuwu" class="now" href="contact.html">Contact</a></li>
<!-- <li><a id="menuwu" href="search.html">Search</a></li> --!>
</ul>
</nav>
</header>
<div class="section container">
<div id="sub" class="subtitle is-5">You Can Contact Via : </div>
<div class="container">
<div id="but">
<button class="button is-info" onclick="twitter()">
<span class="icon">
<i class="fab fa-twitter"></i>
</span>
<span>@albonycal</span>
</button>
<button class="button is-link" onclick="discord()">
<span class="icon">
<i class="fab fa-discord"></i>
</span>
<span>Albony's Server</span>
</button>
<button class="button is-dark">
<a id="idk" href="mailto:[email protected]">
<span>E-mail</span>
</a>
</button>
</div>
</div>
</div>
</center>
<footer id="footer">© Shrirang Kahale 2022-2023</footer>
</body>
<script>
function home() {
window.location.href = "index.html";
}
function twitter() {
// window.location.href = "https://twitter.com/albonycal";
window.open('https://twitter.com/albonycal', '_blank');
}
function discord() {
window.open('https://discord.gg/kdmUKqQEQS', '_blank');
}
</script>
</html>