-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
27 lines (24 loc) · 917 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What's the rating of..</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<input type="radio" name="r" id="r1" value="movie">Movies
<input type="radio" name="r" id="r2" value="series" style="margin-left:10px">Series
<input type="radio" name="r" id="r3" value="episode" style="margin-left:10px">Episode
</div>
<input type="search" name="search" id="search" placeholder="Press Enter after writing movie/show" autofocus>
<h4>IMDb</h4>
<p id="rating">Rating</p>
<p id="votes">Voted by</p>
<p id="rated">Rated</p>
<p id="released">Released on</p>
<script src="script.js"></script>
</body>
</html>