-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (27 loc) · 881 Bytes
/
index.html
File metadata and controls
39 lines (27 loc) · 881 Bytes
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
---
layout: home
search_exclude: true
image: images/logo.png
---
<html>
<body>
<div style="display: flex; flex-direction: column; width: 100%; justify-content: center; align-items: center;">
<img src="images/logo.png" alt="LOGO" width="45%" style="border-width: 2px;">
<h1 id="typewriter" style="text-align: center;"/>
<p>this is my blog! the image above is a vulfpeck album cover<br>check out my <a href="https://github.com/rohinsood/">other projects</a> or my <a href="https://www.linkedin.com/in/rohin-sood-a51b4a218/">linkedin</a></p>
</div>
</body>
<script>
var i = 0;
var txt = "hello, i'm rohin 👋";
var speed = 100;
function typeWriter(x) {
if (i <= txt.length) {
document.getElementById("typewriter").innerHTML = txt.substring(0, i)
i++;
setTimeout(typeWriter, speed);
}
}
typeWriter();
</script>
</html>