-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 2.15 KB
/
index.html
File metadata and controls
78 lines (73 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>mhmdfrhn | Linktree</title>
<!-- Favicon -->
<link
rel="icon"
href="https://avatars.githubusercontent.com/u/113168121?s=400&u=27b3bfa8f2c975ebd22486e9d88f082dd0814430&v=4"
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>
<script>
setTimeout(() => {
const main = document.querySelector("main");
main.style.opacity = 1;
main.style.filter = "blur(0px)";
}, 1000);
</script>
<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 -->
<main class="animated">
<a id="profilePicture">
<img src="profile.png" alt="Profile Picture" />
</a>
<div id="userName">@mhmdfrhn</div>
<div id="links">
<a
class="link"
href="https://www.hackerrank.com/mhmdfrhn"
target="_blank"
>
<i class="fab fa-hackerrank"> </i>Hackerrank
</a>
<a
class="link"
href="https://www.instagram.com/frhnearth/"
target="_blank"
>
<i class="fab fa-instagram"> </i>Instagram
</a>
<a class="link" href="https://codepen.io/mhmdfrhn" target="_blank">
<i class="fab fa-codepen"> </i>Codepen
</a>
<a
class="link"
href="https://www.linkedin.com/in/mhmdfrhn/"
target="_blank"
>
<i class="fab fa-linkedin"> </i>Linkedin
</a>
<a class="link" href="https://github.com/mhmdfrhn" target="_blank">
<i class="fab fa-github"> </i>Github
</a>
</div>
</main>
<div id="hashtag">#BeHappy❤</div>
</body>
</html>