-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProyectos.html
49 lines (49 loc) · 2.17 KB
/
Proyectos.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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/adaa8f99f8.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<nav>
<input type="checkbox" name="" id="check">
<label for="check" class="checkbtn">
<i class="fa-sharp fa-solid fa-bars"></i>
</label>
<label class="logo">Felipe San Martin</label>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Proyectos.html" class="active">Proyectos</a></li>
<li><a href="#">Sobre Mi</a></li>
</ul>
</nav>
<section>
<div class="multiplicador">
<h2>Multiplicador Simple</h2>
<label for="numeroA"> introduce numero A </label>
<input type="number" name="" id="numeroA">
<label for="numeroB"> introduce numero B </label>
<input type="number" name="" id="numeroB">
<input type="submit" onclick="multiplicar()" value="resultado">
<div class="resultado"></div>
</div>
<div class="numeroPrimo">
<h2>Numero Primo</h2>
<label for="numeroA"> introduce numero para conocer cuantos numeros primos tiene </label>
<input type="number" name="" id="primoA">
<input type="submit" onclick="numeroPrimo()" value="resultado">
<p>número primo
Número entero que solamente es divisible por él mismo (positivo y negativo) y por la unidad (positiva y negativa).</p>
<div class="resultadoPrimos"></div>
</div>
</section>
</body>
</html>