-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> The Random Episode </title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="text-center h-100 container">
<div class="align-middle my-3 jumbotron">
<h1> Qual episódio assistir?</h1>
<hr>
<p> Você quer assistir um episódio aleatório de alguma série e não sabe qual? </p>
<p> Use o gerador para escolher um: </p>
<p> Quantas temporadas tem a série? </p>
<p> <input type="number" id="seasons" maxlength="10" value="1" /> </p>
<p> Quantos episódios tem cada temporada? </p>
<p> <input type="number" id="episodes" maxlength="10" value="1"/> </p>
<button type="button" id="generate">Gerar!</button>
<hr>
<p> Temporada <output id="season" data-after="000">1</output> Episódio <output id="episode" data-after="000">1</output></p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>