-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteste.html
30 lines (27 loc) · 847 Bytes
/
teste.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
<!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 href="assets/css/teste.css" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div id="container">
<header>
<h1>Exercicio Prova</h1>
</header>
<input type="text" id="valor1">
<select id="opcoes">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type="text" id="valor2">=<h6><span id="result"></span></h6>
<button id="calcular">Calcular</button>
</div>
</body>
<script src="assets/js/teste.js"></script>
</html>