-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Isaura's Homepage</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Lobster&family=Pacifico&display=swap" rel="stylesheet">
</head>
<body>
<button onclick="topFunction()" id="myBtn" title="Back to top">Top</button>
<script>
let mybutton = document.getElementById("myBtn");
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<header>
<div class="full-width">
<nav>
<ul>
<li><a href="about/index.html">About</a></li>
<li><a href="work/index.html">Work</a></li>
<li><a href="hobbies/index.html">Hobbies</a></li>
</ul>
</nav>
</div>
<h1>
Welcome to the world of Isa!
</h1>
<h2>
You can usually find me in the Pinterest office sending out well crafted emails and chatting away at the PinCafe.
</h2>
<h2>
I take pride in knowing that my work comes first, and puzzling comes second. Actually, its a close tie between
puzzling and eating fresh baked cookies!
</h2>
</header>
<main>
<section id="main-html">
<div class="full-width">
<p>
<img src="img/isa-selfie-block.png" alt="pictures of Isaura">
</p>
<h3>
Y'know what, ✨<i>selfies</i>✨ <br>come before everything!
</h3>
</div>
</section>
<footer>
<div class="full-width">
<h3>
Created by <span><a href="https://holabeatriz.com/" target="_blank">Beatriz</a></span> 2023
</h3>
</div>
</footer>
</main>
</body>
</html>