-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (43 loc) · 1.73 KB
/
index.html
File metadata and controls
58 lines (43 loc) · 1.73 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
<!doctype html>
<html lang="en">
<header>
<title>Chinmay Gaikwad's Portal</title>
<link rel="stylesheet" href="css/master.css">
<link rel="FaviconIcon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="name" content="Chinmay Gaikwad's Portal">
<meta name="robots" content="noindex, nofollow">
</header>
<body background="images/Bg.jpg" style="background-repeat:no-repeat;background-size:100% 100%">
<script>
let a;
let b;
let time;
const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric'};
setInterval(() => {
a = new Date();
date = a.toLocaleDateString(undefined, options);
time = a.getHours() + ':' + a.getMinutes() + ':' + a.getSeconds();
document.getElementById('time').innerHTML = time + " on " + date;
}, 1000);
</script>
<img src="images/Logo.png" width="20%" alt="Logo">
<div class="container my-4">
<h1 class="display-4">Current Time : <span id="time"></span></h1>
</div>
<h1>Chinmay Gaikwad's Portal</h1>
<h2>About Me</h2>
<p>Hello everyone & welcome to my Portal</p>
<p>I'm a student of Datta Meghe College of Engineering</p>
<p>This is my Portfolio which is built with HTML5, CSS3 & JavaScript</p>
<h2>Credentials and Portfolio</h2>
<p><a href="resume.html">My Resume</a> | <a href="https://github.com/chinmayrg">My GitHub</a></p>
<h2>Contact</h2>
<p>Email: <a href="mailto:gaikwadchinmay20@gmail.com">gaikwadchinmay20@gmail.com</a></p>
</body>
<footer>
<hr>
<code>Copyright (c) 2020 Chinmay Gaikwad</code>
</footer>
</html>