-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 3.47 KB
/
index.html
File metadata and controls
42 lines (41 loc) · 3.47 KB
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
<!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 = "css/main.css">
<link rel="icon" href="assets/strawhat.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<title>Jackson Roodman</title>
</head>
<body>
<div class = "animal-container">
<img src="assets/bees.gif" alt="Bees" class="bee">
<img src="assets/bird.gif" alt="Bird" class="bird">
<img src ="assets/monkey.gif" alt="Monkey" class="monkey">
<img src ="assets/grass.png" alt="Grass" class="grass">
<img src ="assets/dogs.gif" alt="Dogs" class="dogs">
</div>
<div>
<div>
<div>
<p id="name">Jackson Roodman</p>
</div>
<div id="link-container">
<div>
<a class="link" href="https://JacksonRoodman.github.io/projects/">PROJECTS</a>
</div>
<div>
<a class="link" href="https://JacksonRoodman.github.io/about/">ABOUT</a>
</div>
</div>
</div>
</div>
<audio id="music" autoplay loop>
<source src = "assets/realitysurf.mp3 " type="audio/mpeg">
</audio>
<script src="js/main.js"></script>
</body>
</html>