-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (136 loc) · 3.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap"
rel="stylesheet"
/>
<title>Exercícios (1-3) | Orion Bootcamp</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<link
rel="stylesheet"
type="text/css"
href="./src/exercícios/1-um/css/style.css"
/>
<link
rel="stylesheet"
type="text/css"
href="./src/exercícios/2-dois/css/style.css"
/>
<link
rel="stylesheet"
type="text/css"
href="./src/exercícios/3-três/css/style.css"
/>
</head>
<body>
<header>
<h1>Exercícios (1-3) | Orion Bootcamp</h1>
</header>
<main>
<section class="ex1__container">
<h2 class="ex1__title">Contador de Vogais</h2>
<div class="ex1__container-input">
<input id="ex1__input" type="text" placeholder="Digite uma palavra" />
<button id="ex1__button">Contar</button>
</div>
<textarea
name="ex1__textarea"
id="ex1__textarea"
class="ex1__textarea"
cols="55"
rows="5"
placeholder="Quantidade de vogais"
readonly
></textarea>
</section>
<section class="ex2__container">
<table id="ex2__table">
<thead>
<tr>
<th>ID</th>
<th>Nome</th>
<th>Biografia</th>
</tr>
</thead>
<tbody id="ex2__tbody"></tbody>
</table>
<div class="ex2__container-bio">
<h2 class="ex2__title-bio">Retornar Biografia</h2>
<form class="ex2__form-bio">
<input id="ex2__input-bio" type="text" placeholder="ID" required />
<button id="ex2__button-bio" type="button">Consultar</button>
</form>
<textarea
name="ex2__textarea-bio"
id="ex2__textarea-bio"
class="ex2__textarea"
cols="55"
rows="5"
placeholder="Biografia"
readonly
></textarea>
</div>
<div class="ex2__container-name">
<h2 class="ex2__title-name">Retornar Nome</h2>
<form class="ex2__form-name">
<input id="ex2__input-name" type="text" placeholder="ID" required />
<button id="ex2__button-name" type="button">Consultar</button>
</form>
<textarea
name="ex2__textarea-name"
id="ex2__textarea-name"
class="ex2__textarea"
cols="55"
rows="5"
placeholder="Nome"
readonly
></textarea>
</div>
<div class="ex2__container-delete">
<h2 class="ex2__title-delete">Deletar Pessoa</h2>
<form class="ex2__form-delete">
<input
id="ex2__input-delete"
type="text"
placeholder="ID"
required
/>
<button id="ex2__button-delete" type="button">Deletar</button>
</form>
</div>
<div class="ex2__container-alterar">
<h2 class="ex2__title-alterar">Alterar Bio/Nome</h2>
<form class="ex2__form-alterar">
<input
id="ex2__input-alterar-id"
type="text"
placeholder="ID"
required
/>
<input
id="ex2__input-alterar-name"
type="text"
placeholder="Nome"
required
/>
<input
id="ex2__input-alterar-bio"
type="text"
placeholder="Biografia"
required
/>
<button id="ex2__button-alterar" type="button">Alterar</button>
</form>
</div>
</section>
</main>
<script src="./src/exercícios/1-um/js/script.js"></script>
<!-- <script src="./src/exercícios/2-dois/js/script.js"></script> -->
<script src="./src/exercícios/3-três/js/script.js"></script>
</body>
</html>