-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 1.14 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>
<head>
<meta charset="UTF-8">
<title>JavaScript Pet</title>
<link rel="stylesheet" href="css/style.css">
<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=M+PLUS+Rounded+1c&display=swap" rel="stylesheet">
</head>
<body>
<div id="pet-box">
<h2>jsPet</h2>
<h1 id="pet-face">(◕‿◕)</h1>
<div id="borderbox">
<div>
<button id="feed">feed</button>
<button id="play">play</button>
<button id="sleep">sleep</button>
<button id="pet">pet</button>
</div>
<div>
<p id="feed-lvl">Hunger Level: 5</p>
<p id="play-lvl">Fun Level: 5</p>
<p id="sleep-lvl">Sleepy Level: 5</p>
<p id="pet-lvl">Love Level: 5</p>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>