-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (49 loc) · 1.68 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
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<link rel="stylesheet" href="./css/styles.css" />
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<title>Desafio - search-devs</title>
</head>
<body>
<div class="container">
<h1 class="center">search-devs</h1>
<div class="input-field">
<input id="inputName" type="text" autofocus />
<label for="inputName" class="validate">Pesquisa por nome:</label>
</div>
<div>
<label class="option">
<input id="checkboxJava" type="checkbox" checked />
<span>Java</span>
</label>
<label class="option">
<input id="checkboxJavaScript" type="checkbox" checked />
<span>JavaScript</span>
</label>
<label class="option">
<input id="checkboxPython" type="checkbox" checked />
<span>Python</span>
</label>
<label class="option">
<input id="radioAnd" name="radioGroup" type="radio" />
<span>E</span>
</label>
<label class="option">
<input id="radioOr" name="radioGroup" type="radio" checked />
<span>OU</span>
</label>
</div>
<div style="margin-top: 50px" id="divDevs"></div>
</div>
<script defer src="./js/script.js"></script>
</body>
</html>