-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (100 loc) · 3.61 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Akashdip / Websites</title>
<!-- Favicon -->
<link rel="icon"
href="https://akashdip2001.github.io/akashdipmahapatra/images/Screenshot_20220605-153105_Chrome-01-01-1-89x89.png"
type="image/x-icon" />
<!-- Font Awesome icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<!-- Core theme CSS -->
<link rel="stylesheet" href="style.css">
</head>
<link rel="shortcut icon" href="logo.ico" type="image/x-icon">
<link rel="icon" href="logo.ico" type="image/x-icon">
<body>
<!-- Parallax Pixel Background Animation -->
<section class="animated-background">
<div id="stars1"></div>
<div id="stars2"></div>
<div id="stars3"></div>
</section>
<!-- End of Parallax Pixel Background Animation -->
<a id="profilePicture" href="#popup">
<img src="81384987.jpg" alt="akashdip mahapatra">
</a>
<div class="overlay" id="popup">
<div class="popup">
<div class="popup-photo">
<a href="akashdip_aot.jpg" target="_blank">
<img
src="https://akashdip2001.github.io/akashdipmahapatra/images/Screenshot_20220605-153105_Chrome-01-01-1-89x89.png"
alt="akashdip">
</a>
</div>
<div class="popup-quote">
Hi, I am a Mecanical Engineering student,<br> <br> Expert in HTML, Kali Linux.<br><br> Learning C, Cpp,
java.<br> Love in Drawing.<br><br> 2022.<br><br> My Dream is creating a Time- machine,<br><br> E=mc^2
</div <a class="popup-close" onclick="history.back()">×</a>
</div>
</div>
<div id="userName">
Akashdip // my Websites
</div>
<div id="links">
<a class="link" href="https://github.com/akashdip2001" target="_blank">
<i class="fab fa-github"> </i> Github
</a>
<a class="link" href="https://www.youtube.com/channel/UCxvmp634YDc41xCWOdvWqoQ" target="_blank">
<i class="fab fa-youtube"> </i> YouTube
</a>
<br>
<br>
<a class="link" href="https://akashdip2001.github.io/website-2/" target="_blank">
<i class="fab fa-chrome"> </i> my Website
</a>
<br>
<div class="moreOptiondiv">
<p onclick="hideShow()" class="moreOption">more<span class="loadingAnimation"></span></p>
</div>
<div id="main" class="more" style="display: none;">
<a class="link" href="https://akashdipmahapatra.netlify.app/" target="_blank">
<i class="fab fa-chrome"> </i> my Website 2
</a>
<a class="link" href="https://linktr.ee/AkashdipMahapatra" target="_blank">
<i class="fab fa-chrome"> </i> Website 3
</a>
<br>
<a class="link" href="https://akashdip2001.github.io/4-Years-of-college/" target="_blank">
<i class="fab fa-chrome"> </i> 4 Years of college life
</a>
<!--<br>
<br>
<a class="link" href="https://www.buymeacoffee.com/akashdip2001" target="_blank">
<i class="fa-solid fa-hands-holding-heart"> </i> buy me a coffee Please 😊
</a>-->
</div>
<br>
<br>
<a class="link" href="https://akashdip2001.github.io/linktree/" target="_blank">
<i class="fa-solid fa-hands-holding-heart"> </i> Back to main manu
</a>
</div>
<div id="hashtag">
console.log("AKASHDIP MAHAPATRA");
</div>
<script>
var div = document.getElementById('main');
function hideShow() {
if (div.style.display === 'none') {
div.style.display = 'block';
} else {
div.style.display = 'none';
}
}
</script>
</body>
</html>