-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (61 loc) · 2.84 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Visualizador JSON</title>
<!-- Open Graph Tags -->
<meta property="og:title" content="Visualizador JSON">
<meta property="og:description" content="Visualize seu JSON de forma amigável e fácil.">
<meta property="og:image" content="https://jsonspectator.com/assets/OIG.png">
<meta property="og:url" content="https://jsonspectator.com/">
<meta property="og:type" content="website">
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome 3 -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<!-- Prism CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.27.0/themes/prism-okaidia.min.css" rel="stylesheet" />
<!-- Custom CSS -->
<link href="./assets/styles.css" rel="stylesheet">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- json-view CSS -->
<link href="https://cdn.jsdelivr.net/gh/bazh/jquery.json-view/dist/jquery.json-view.css" rel="stylesheet" />
<!-- json-view JS -->
<script src="https://cdn.jsdelivr.net/gh/bazh/jquery.json-view/dist/jquery.json-view.min.js"></script>
</head>
<body>
<div class="container">
<h1 class="text-center mt-3">Visualizador JSON</h1>
<div class="row mt-3 input-output-container">
<div class="col">
<div class="form-floating h-100">
<textarea id="json-input" class="form-control" placeholder="Insira o JSON aqui"></textarea>
<label for="json-input">JSON Input</label>
</div>
</div>
<div class="col">
<div id="json-output" class="h-100 language-json"></div>
</div>
</div>
</div>
<button id="toggle-theme" class="btn btn-dark position-fixed bottom-0 start-0 m-3">
<i id="toggle-theme-icon" class="icon-moon"></i>
</button>
<!-- Adicione ao final do seu arquivo, antes do fechamento da tag </body> -->
<!-- Rodapé (footer) -->
<footer class="custom-footer mt-3 py-3 text-center">
Desenvolvido por <a href="https://github.com/Rodrigomsdevs" target="_blank">RodrigoMS</a>
</footer>
<!-- Bootstrap 5 JS Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.min.js"></script>
<!-- Prism JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.27.0/prism.min.js"></script>
<!-- Prism JSON Plugin -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.27.0/components/prism-json.min.js"></script>
<!-- app.js -->
<script src="./assets/app.js"></script>
</body>
</html>