-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
32 lines (26 loc) · 1.15 KB
/
popup.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
<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section id = "block">
<form id="my-form">
<input type="image" id="pet-change1" src="/images/AvaPet128.png" height="30" width="30" >
<input type="image" id="pet-change2" src="/images/BellaPet128.png" height="30" width="30" >
<input type="image" id="pet-change3" src="/images/CarolPet128.png" height="30" width="30" >
<input type="image" id="pet-change4" src="/images/DianaPet128.png" height="30" width="30" >
<input type="image" id="pet-change5" src="/images/EileenPet128.png" height="30" width="30" >
<div class="msg">
<h3 id="pet-name">向晚</h3>
<p>
<img height="100" style="max-width: 120px;background-position: top left;" src="/images/AvaPet128.png" />
</p>
</div>
<input class="btn" type="submit" id="pet-submit" value="更换宠物" >
</form>
</section>
<script src="./popup.js"></script>
</body>
</html>