-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<title>Ryan D. Chavez</title>
<link rel="icon" type="image/x-icon" href="rdc.ico">
<link rel="stylesheet" type="text/css" href="style.css" />
<script>
function addHoverEffect(element) {
element.style.backgroundColor = "#1DA1F2";
element.style.color = "white";
element.style.cursor = "pointer";
}
function removeHoverEffect(element) {
element.style.backgroundColor = "white";
element.style.color = "#1DA1F2";
element.style.cursor = "auto";
}
</script>
</head>
<body>
<header>
<h1>Ryan D. Chavez</h1>
</header>
<main>
<p>Hi There!</p>
<p class="bounce-up"> I'm Ryan, formerly a fintech PM and Startup Ops person.
<br> Currently figuring things out for myself! </p>
<img src="ryan.png" alt = "picture of Ryan" height="640" width="640"/>
<h3 class="bounce-up">Connect with Me</h3>
</main>
<div>
<a href="https://www.linkedin.com/in/ryan-d-chavez" onmouseover="addHoverEffect(this)" onmouseout="removeHoverEffect(this)" class="button" target="_blank">
<img src="linked.svg" alt="LinkedIn" width="32" height="32"></a>
<a href="https://www.twitter.com/ry_and_chavez" onmouseover="addHoverEffect(this)" onmouseout="removeHoverEffect(this)" class="button" target="_blank">
<img src="twit.svg" alt="Twitter" width="32" height="32"></a>
<a href="https://www.instagram.com/ry_and_chavez" onmouseover="addHoverEffect(this)" onmouseout="removeHoverEffect(this)" class="button" target="_blank">
<img src="insta.svg" alt="Instagram" width="32" height="32"></a>
</div>
</body>
</html>