-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (64 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
<script src="script.js"></script>
<title>Resume</title>
<style>
body {
background-color: #030000;
}
.output {
text-align: center;
font-family: 'Source Code Pro', monospace;
color: white;
}
.output h1 {
font-size: 80px;
}
/* Cursor Styling */
.cursor::after {
content: '';
display: inline-block;
margin-left: 3px;
background-color: white;
animation-name: blink;
animation-duration: 0.5s;
animation-iteration-count: infinite;
}
h1.cursor::after {
height: 24px;
width: 13px;
}
p.cursor::after {
height: 13px;
width: 6px;
}
@keyframes blink {
0% {
opacity: 1;
}
49% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 0;
}
}
</style>
</head>
<body>
<div class="container py-5">
<div class="output" id="output">
<h1 class="cursor"></h1>
<p></p>
</div>
</div>
</body>
</html>