-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Epilogue:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Passion+One:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/main.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<script src="https://code.jquery.com/color/jquery.color.plus-names-2.2.0.min.js" integrity="sha256-97quMNaesEFsrV6uexbIR3+D1V1+75CVDXuLBFQ07lA=" crossorigin="anonymous"></script>
<script defer src='./scripts/app.js'></script>
<title>My Friend Roscoe</title>
</head>
<body>
<main>
<div id="yard"><img src="./resources/yard.svg"></div>
<div id="den"></div>
<figure><img id="roscoe" src="./resources/perky.svg"></figure>
<div id="door-frame"><img src="./resources/door-closed.svg" id="door-img"></div>
<header id="instructions">INSTRUCTIONS</header>
<div id="trash"><img src="./resources/trash.svg"></div>
<time id="calendar">
<img src="./resources/calendar.svg" id="calendar-img">
<img src="./resources/circle.svg" id="circle-img">
</time>
<summary id="stats">
<span>LONELINESS <img src="./resources/zero.svg" class="bars" id="lonely"></span>
<span>HUNGER <img src="./resources/zero.svg" class="bars" id="hungry"></span>
<span>FATIGUE <img src="./resources/zero.svg" class="bars" id="tired"></span>
</summary>
</main>
<footer>
Fair use vector art sourced from <a href="https://www.vecteezy.com/free-vector/raccoon">Vecteezy</a>
</footer>
</body>
</html>