-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<!--styles-->
<link rel="stylesheet" href="https://s3.amazonaws.com/gabycodes.com/styles.css">
<!-- <link rel="stylesheet" href="styles.css"> -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:300&display=swap" rel="stylesheet">
<meta charset="utf-8">
<title>Gabriela Dijkhoffz</title>
</head>
<body onload="typeWriter()">
<div class="wrapper-index">
<div class="header">
<h1 id="typewriter"></h1>
</div>
<ul class="list">
<li class="main-list-items left-li"><a href="about.html">about</a></li>
<li class="main-list-items"><a href="experience.html">experience</a></li>
<li class="main-list-items right-li"><a href = "mailto: gabriela.dijkhoffz@knights.ucf.edu">contact</a></li>
</ul>
</div>
<script>
var i = 0;
var txt = "hi i'm gaby"; /* The text */
var speed = 50; /* The speed/duration of the effect in milliseconds */
function typeWriter() {
if (i < txt.length) {
document.getElementById("typewriter").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
</script>
</body>
</html>