-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevlogs.html
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathdevlogs.html
File metadata and controls
43 lines (43 loc) · 1.17 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
<!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;}
#devlog_text {animation-delay: 0.2s;}
</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>
<p id="devlog_text" class="anim">nothing here for now or is there? i mean really, is there?</p>
</div>
</body>
</html>