-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
32 lines (32 loc) · 910 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
30
31
32
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<title>Hack4u Modo Cine</title>
<style>
body {
width: 200px;
padding: 10px;
background-color: #000000;
color: white;
}
</style>
</head>
<body>
<h1>Hack4u Modo Cine</h1>
<h3>By Kerkox (Paul Cortes)</h3>
<select class="form-select" id="size-mode" value="0">
<option value="0">Normal</option>
<option value="1">Modo 1</option>
<option value="2">Modo 2</option>
</select>
<script src="popup.js"></script>
</body>
</html>