forked from marinacharris/prubagit20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
basico.html
58 lines (58 loc) · 1.74 KB
/
basico.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Básicos</title>
<link rel="icon" href="favicon.png" type="image/png">
</head>
<body>
<h1>Tipos de datos primitivos en Java</h1>
<h2>Tipo int</h2>
<p>Es un tipo de dato númerico entero, con signo de 32 bits. <br>
Su rango va desde -2e31 hasta 2e31 - 1.</p>
<h2>Tipo float</h2>
<p>Es un tipo de dato numerico coma flotante con precision de 64 bits</p>
<hr>
<!-- Este es un comentario en html (ctrl + }) -->
<h2>Links a otros sitios</h2>
<a href="holamundo.html">Ir a hola mundo</a> <br>
<a href="https://www.google.com/">Ir a google</a>
<hr>
<img src="imagen1.jpg" alt="Tecnología" width="500" height="281">
<hr>
<iframe width="786" height="442" src="https://www.youtube.com/embed/ZP2O4ejEWNA" title="Scrum: componentes y marco" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<hr>
<h1>Lenguajes de programación</h1>
<ol>
<li>Java</li>
<li>Python</li>
<li>JavaScript</li>
</ol>
<ul>
<li>Java</li>
<li>Python</li>
<li>JavaScript</li>
</ul>
<hr>
<h1>Tablas</h1>
<table>
<tr>
<th>Descripción</th>
<th>Cantidad</th>
<th>Precio unitario</th>
</tr>
<tr>
<td>Manzana</td>
<td>50</td>
<td>3000</td>
</tr>
<tr>
<td>Piña</td>
<td>25</td>
<td>6000</td>
</tr>
</table>
</body>
</html>