forked from shanonlee541/dogify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
29 lines (29 loc) · 834 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class='popupContainer'>
<h2>CorgiOverflow</h2>
<h4>Cover Type</h4>
<div class='button-row'>
<button id="dogButton">dogify</button>
<!-- <button id="colorCodeButton"></button> -->
</div>
<!-- <form>
<input type='radio' id='dog' value='dog' name='coverType'>
<label for='dog'>
dog
</label>
<br>
<input type='radio' id='colorCode' name='coverType'>
<label for='colorCode'>
color
</label>
</form> -->
</div>
</body>
<script src='main.js' type="text/javascript"></script>
<script src='popup.js' type="text/javascript"></script>
</html>