-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (50 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
79 lines (50 loc) · 2.22 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Java Script</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form name="form" id="form" action="page2.php">
<button type="submit" id="btn"> Click me </button>
</form>
<button id="btn1" class="button" data-color="green"> Green </button>
<button id="btn2" class="button" data-color="red"> Red </button>
<button id="btn3" class="button" data-color="blue"> Blue </button>
<select name="select" id="select">
<option value="">select</option>
<option value="option1">option1</option>
<option value="option2">option2</option>
</select>
<div class="main">
<button id="btn4">Create a new Button</button>
</div>
<img id="btn5" src="imag/botao1.png" alt="botaotogle" width="100" heigh="100">
<div class="menu">
<a ref="#">link A</a>
<a ref="#">link B</a>
</div>
<form name="form1" id="form1" method="post" action="formulario.php">
<input type ="text" name="inputext" id="inputext"> <br>
<textarea name="txtArea" id="txtArea"></textarea>
<div id="lengthArea">Numero de caracteres</div>
<input type="checkbox" name="check" id="check" value="confirmation" checked="true" >Confirmation<br>
<input type="radio" name="gender" value="Male">Male<br>
<input type="radio" name="gender" value="Female">Female<br>
<div class="galeria">Galeria <br></div><br>
<input type="file" name="imag[]" id="img" multiple><br>
</form>
<br><button id="btnDb" >showDb</button> <br>
<br><div id="result" >Relogio</div><br>
<form name="form2" id="form2" method="get" action="calculadora.js">
<input type="text" name="search" id="search"><br>
</form>
<br><div class="resultados">Funções call, Apply e Bind</div>
<!--Chamar a pagina do script-->
<script src="script.js"></script>
<script src="eventos.js " ></script>
<script src="calculadora.js" type ="module"></script>
<script src="MainClasses.js" type ="module"></script>
<script src="Debounce.js"></script>
</body>
</html>