-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 2.11 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="build/index.css">
<title>Test</title>
</head>
<body>
<script src="./source/scripts/tabElement.js"></script>
<script src="./source/scripts/popupElement.js"></script>
<popup-window title="hello world">
<div class="popup-body">
<tab-element>
<tab-option value="test"></tab-option>
<tab-option value="custom tab!!"></tab-option>
<tab-option value="made using JS"></tab-option>
<tab-option value="cool, right?"></tab-option>
</tab-element><br> <br>
<button>I'm a buttom</button> <br> <br>
<input type="radio" name="abc" value="Sseth" id="sseth">
<label for="sseth">I'm a radio</label> <br>
<input type="radio" name="abc" value="here" id="here">
<label for="here">i'm a radio 2</label><br><br>
<input type="checkbox" name="n" value="ookie" id="ookie">
<label for="oorah">checked</label>
<input type="checkbox" name="n" value="dookie" id="dookie">
<label for="dookie">unchecked</label><br><br>
<label class="aqua-selector">
<select>
<option>Shardev</option>
<option>Chardev</option>
<option>sharni-</option>
</select>
</label>
<img src="./assets/GT4cursor.png" class="cursor">
<input type="text" placeholder="placeholder">
<br><br>
<tab-element>
<tab-option value="test"></tab-option>
</tab-element><br><br>
<progress value="50" max="100"></progress>
</tab-element>
<fieldset>
<p>estou dentro do fieldset</p>
</fieldset>
</div>
</popup-window>
</body>
</html>