-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 1.31 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="estilo/bootstrap.min.css">
<link rel="stylesheet" href="estilo/style.css">
<title>Exercício 8.c</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3">
<img src="img/exerc.jpg" alt="Exercícios">
</div>
<div class="col-sm-9">
<h1>Herbie: Controle de Serviços</h1>
<p>
<label for="inProduto">Serviço - Veículo:</label>
<input type="text" id="inServico" class="form-control" autofocus>
</p>
<p>
<input type="button" value="Adicionar Serviço" id="btAdicionar" class="btn btn-primary">
<input type="button" value="Executar Serviço" id="btExecutar" class="btn btn-danger">
</p>
<h3> Serviços Pendentes:
<span id="outPendentes"></span>
</h3>
<p>
<pre id="outPen">
</pre>
</p>
<p class="bg-danger text-white"> Serviço em Execução:</p>
<h4 id="outExecucao"></h4>
</div>
</div>
</div>
<script src="js/servicoherbie.js"></script>
</body>
</html>