-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.html
77 lines (66 loc) · 2.51 KB
/
update.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
<!DOCTYPE HTML><title>Event Updates</title>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="icon" type="image/jpg" href="images/Sai.png"/>
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body class="is-preload">
<!-- loader -->
<div id="preloader"></div>
<!-- Nav -->
<nav id="nav">
<ul class="container">
<li><a href="index.html#top">HOME</a></li>
<li><a href="index.html#work">Projects</a></li>
<li><a href="index.html#portfolio">Awards</a></li>
<li><a href="index.html#PROGRAMS">Programs</a></li>
<li><a href="index.html">Back</a></li>
</ul>
</nav>
<P></P>
<!-- <h1>UNDER MAINTENANCE</h1>-->
<H2 align="center" ><u>UPCOMING EVENTS</u></H2>
<!-- loader -->
<article id="contact" class="wrapper style4">
<div class="container medium">
<header>
<h2>CONTACT</h2>
<h4>For any support please contact me at <a style="color: darkcyan;" href="mailto:[email protected]">[email protected]</a></h4>
</header>
<div class="row">
</div>
<hr />
<h3>Find me on ...</h3>
<ul class="social">
<li><a href="https://www.instagram.com/saisumanbebarta/" class="icon brands fa-instagram"><span class="label">instagram</span></a></li>
<li><a href="https://www.facebook.com/saisuman.bebarta.3" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
<li><a href="https://github.com/Saisumanbebarta" class="icon brands fa-github"><span class="label">Github</span></a></li>
</ul>
<hr />
</div>
</div>
<footer>
<ul id="copyright">
<li>© Sai Suman Bebarta. All rights reserved.</li>
</ul>
</footer>
</div>
</article>
<script>
var loader = document.getElementById("preloader");
window.addEventListener("load", function () {
var now = new Date();
var uptoTime = new Date(now.getTime() + 2000);
var op = 1;
setInterval(() => {
op = op - 0.05;
loader.style.opacity = op
if (new Date().getTime() > uptoTime) {
loader.style.display = "none";
}
}, 100);
})
</script>
<!-- loader -->
</body>