-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocials.html
More file actions
61 lines (61 loc) · 2.02 KB
/
Copy pathsocials.html
File metadata and controls
61 lines (61 loc) · 2.02 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
<!DOCTYPE html>
<html>
<head>
<title>Devlogs | Osaid Hassan</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="images/home icon.png">
<style>
.anim {
opacity: 0;
filter: blur(15px);
transform: translateY(30px);
animation: reveal 1s ease forwards;
}
@keyframes reveal {
0% {
opacity: 0;
filter:blur(15px);
transform: translateY(30px);
}
100% {
opacity: 1;
filter: blur(0);
transform: translateY(0);
}
}
#header {animation-delay: 0.3s;}
#hi {animation-delay: 0.2s;}
#youtube {animation-delay: 0.5s;}
#github {animation-delay: 0.6s;}
#itch {animation-delay: 0.7s;}
#gmail {animation-delay: 0.8s;}
</style>
</head>
<body>
<div id="text">
<p id="header" class="anim">
<span id="name">
<a href="home.html"> osaid hassan</a>
</span>
<span id="home">
<a href="home.html"> back</a>
</span>
</p>
<h1 id="hi" class="anim">my socials.</h1>
<div id="icons">
<a href="https://www.youtube.com/@OsaidiiDev" target="_blank" id="youtube" class="anim">
<img src="images/youtube logo.png" width="55" height="55">
</a>
<a href="https://github.com/Osaidii" target="_blank" id="github" class="anim">
<img src="images/github logo.png" width="60" height="60">
</a>
<a href="https://osaidii.itch.io/" target="_blank">
<img src="images/itch logo.png" width="50" height="40" id="itch" class="anim">
</a>
<a href="mailto:someone@example.com" target="_blank">
<img src="images/gmail logo.png" width="50" height="35" id="gmail" class="anim">
</a>
</div>
</div>
</body>
</html>