-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
61 lines (45 loc) · 1.36 KB
/
detail.html
File metadata and controls
61 lines (45 loc) · 1.36 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
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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Buttons, checkboxes, and more! Copy paste CSS & HTML</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/gh/SH20RAJ/WebScrapperJS@latest/WebScrapper.min.js" ></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/CDNSFree2/PrismJS@latest/prism.min.css">
<link rel="stylesheet" href="https://sopscrollbar.sh20raj.repl.co/ssb/ssb3.css">
</head>
<body class="ssb3">
<div class="container">
<header>
<a href="../"><button >Home</button></a>
</header>
<h1>Result</h1>
<div id="result">
<div class="preview" id="center"></div>
</div>
<hr>
<div class="row">
<div class="col">
<h1>HTML</h1>
<pre>
<code id="htmlcon" class="language-html" contenteditable>
</code>
</pre>
</div>
<div class="col">
<h1>CSS</h1>
<pre>
<code id="csscon" class=" language-css" contenteditable>
</code>
</pre>
</div>
</div>
</div>
<footer>
</footer>
<script src="https://cdn.jsdelivr.net/gh/CDNSFree2/PrismJS@latest/prism.min.js"></script>
<script src="detail.js"></script>
</body>
</html>