-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.8 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
<!DOCTYPE html>
<html lang="es">
<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>Formateador de saltos de línea</title>
<link rel="stylesheet" href="./Styles/normalize.css">
<link rel="stylesheet" href="./Styles/styles.css">
</head>
<body>
<main>
<section class="info">
<h1 class="info__title">Saltos de línea</h1>
<p class="info__desc"> Esta herramienta se encarga de sustituir los saltos de líneas por "\n" y reduce todo a una sola línea.</p>
</section>
<section class="conversor">
<div class="conversor__input">
<h2 class="conversor__title">Entrada:</h2>
<textarea class="conversor__input__text" id="txtBox" name="txtname" rows="20" cols="80"></textarea>
<input class="conversor__input__fireButton" value="Convertir" type="button" id="sendButton" onclick="getText()">
</div>
<div class="conversor__result">
<h2 class="conversor__title">Resultado:</h2>
<div class="conversor__result__container">
<textarea class="conversor__result__text" name="resutBox" id="output" cols="65" rows="1"></textarea>
<button class="conversor__result__copy_button" onclick="copyText()">
<img src="https://img.icons8.com/ios/344/copy.png">
</button>
</div>
</div>
</section>
</main>
<footer>
<p>Dessarrollado por: <a target="_blank" href="https://twitter.com/Manuel2Code">Manuel Peñaloza</a></p>
</footer>
<script src="./src/index.js"></script>
</body>
</html>