-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexV2.html
68 lines (63 loc) · 2.19 KB
/
indexV2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body >
<section>
<header>
<h1>Estado Default</h1>
</header>
<div id="shpDeaf">
<img src="avatar.PNG" alt="">
<p id= "default"> </p>
</div>
</section>
<section>
<header>
<h1>Estado Aberto</h1>
</header>
<div id="shpOpen" onclick=>
<img src="avatar.PNG" alt="">
<p id= "open"></p>
</div>
<div id="tooltip" >
<div>
<div id="lable">
<p>Adultos (+12 anos)</p>
</div>
<div class = "picker">
<button id="decA" onclick="decA()">–</button>
<p id="n_adultos">1</p>
<button id="incA" onclick="incA()">+</button>
</div>
</div>
<div>
<div>
<p>Crianças (2-11 anos)</p>
</div>
<div class = "picker">
<button id="decC" onclick="decC()">–</button>
<p id="n_criancas">0</p>
<button id="incC" onclick="incC()">+</button>
</div>
</div>
<div>
<div>
<p>Bebés (-2 anos)</p>
</div>
<div class = "picker">
<button id="decB" onclick="decB()">–</button>
<p id="n_bebes">0</p>
<button id="incB" onclick="incB()">+</button>
</div>
</div>
</div>
</section>
<script src="mainV2.js"></script>
</body>
</html>