-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jesus.html
55 lines (50 loc) · 1.67 KB
/
Jesus.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
<!DOCTYPE html>
<html>
<head>
<title>My application</title>
</head>
<style>
.tab{
display: inline-block;
margin-left: 300px;
}
.tab2{
display: inline-block;
margin-left: 100px;
}
h1 {
border: 1px solid black;
margin-top: 70px;
margin-bottom: 70px;
margin-right: 10px;
margin-left: 10px;
background-color: #fae6fa;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
border: 1px solid black;
}
</style>
<body>
<button onclick="document.location='index.html'">Home</button>
<a href="Paulina.html">Paulina</a>
<a href="Guillermo.html">Guillermo</a>
<a href="Jesus.html">Jesús</a>
<h1 style="color: lightseagreen"> Jesús </h1>
<h1 style="color: orangered">Sensor 3: Temperatura</h1>
<div>
<canvas id="myGauge3" width="420" height="250"></canvas>
</div>
<h1 style="color: orangered">Sensor 3: Húmedad</h1>
<div>
<canvas id="myChart3"></canvas>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js"></script>
<script src="index.html"></script>
<script src="https://bernii.github.io/gauge.js/dist/gauge.min.js"></script>
<script src="js/gauge3.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
<script src="js/mychart3.js"></script>
</html>