-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring_convert.html
More file actions
37 lines (34 loc) · 1.33 KB
/
string_convert.html
File metadata and controls
37 lines (34 loc) · 1.33 KB
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
<!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>String Convert</title>
<!-- ========== Start Bootstrap Section ========== -->
<link href="bootstrap-5.0.2-dist/css/bootstrap.min.css" rel="stylesheet">
<script src="bootstrap-5.0.2-dist/js/bootstrap.bundle.min.js"></script>
<!-- ========== End Section ========== -->
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js" defer></script>
</head>
<body>
<div class="container mt-5 ">
<div class="center-me mb-3">
<script>
const urlParams = new URLSearchParams(window.location.search);
const texto = urlParams.get('texto');
</script>
<p class="textoModal" id="textoModal"><script>document.write(texto);</script></p>
</div>
<div class="row">
<div class="col">
<button class="btn btn-primary" id="windowClose" onclick="windowClose()">Fechar Janela</button>
</div>
<div class="col">
<button class="btn btn-primary" id="copiarModal" onclick="copiarModal()">Copiar Texto</button>
</div>
</div>
</div>
</body>
</html>