-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (48 loc) · 1.87 KB
/
index.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
<!doctype html>
<html lang="es">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Estilos CSS -->
<link rel="stylesheet" href="css/style.css">
<title>juegos</title>
</head>
<body>
<nav class="m-1">
<img src="img/Vector.png" alt="logo">
</nav>
<section>
<div class="row">
<div class="col-sm-1 col-7 m-3">
<textarea name="text" id="text" cols="30" rows="10" class="text-area" placeholder="Inserte el texto" autofocus></textarea>
<p class="m-1" id="error">
<img src="img/Vector (2).png" alt="icono">
Solo letras minusculas y sin acentos
</p>
<div class="row m-1">
<div class="col-5 col-sm-2 m-1">
<button class="btn btn-primary p-1" onclick="encriptar()">Encriptar</button>
</div>
<div class="col-5 col-sm-2 m-1 ">
<button class="btn btn-info p-1" onclick="desencriptar()">Desencriptar</button>
</div>
</div>
</div>
<div class="col-sm-2 col-4 m-1 card card2">
<img src="img/1.png" alt="imagen muneco" class="image imagen" id="imagen">
<section class="row left m-4" id="resultado">
<h1 class="center">Ningun mensaje fue encontrado</h1>
<p class="center">Ingresa el texto que desees encriptar o desencriptar</p>
</section>
<div class="col-12">
<button class="btn-info p-1 copiar" id="copiar" hidden>Copiar</button>
</div>
</div>
</div>
</section>
<!-- archivos javascript -->
<script src="js/functions.js"></script>
</body>
<h1 class="copyrignt"> Elaborado por Rafael Reales 2023</h1>
</html>