-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
80 lines (73 loc) · 3.96 KB
/
template.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
78
79
80
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="icon" href="./assets/image/favicon-32x32.png" type="image/gif" sizes="32x32">
<link rel="shortcut icon" href="./assets/image/favicon-32x32.png" type="image/gif" sizes="32x32">
<link rel="apple-touch-icon" href="./assets/image/apple-touch-icon.png" type="image/gif">
<!-- Google Font CDN -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<title>Title of the site</title>
<style>
section {
padding-top: 70px;
}
</style>
</head>
<body>
<section>
<div class="container">
<!-- ............Nav-Tab Start............. -->
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="pills-preview-tab" data-bs-toggle="pill"
data-bs-target="#pills-preview" type="button" role="tab" aria-controls="pills-preview"
aria-selected="true">Preview</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-code-tab" data-bs-toggle="pill" data-bs-target="#pills-code"
type="button" role="tab" aria-controls="pills-code" aria-selected="false">Code</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="pills-info-tab" data-bs-toggle="pill" data-bs-target="#pills-info"
type="button" role="tab" aria-controls="pills-info" aria-selected="false">Info</button>
</li>
</ul>
<div class="tab-content" id="pills-tabContent">
<div class="tab-pane fade show active" id="pills-preview" role="tabpanel"
aria-labelledby="pills-preview-tab">
<!-- preview-panel-start -->
<!-- preview-panel-end -->
</div>
<div class="tab-pane fade" id="pills-code" role="tabpanel" aria-labelledby="pills-code-tab">
<!-- code-panel-start -->
<iframe style="border-radius: 4px;" width="100%" height="500"
src="//jsfiddle.net/shahriarshafin/cL8ynru2/3/embedded/html,css,js/dark/"
allowfullscreen="allowfullscreen" allowpaymentrequest frameborder="0"></iframe>
<!-- code-panel-end -->
</div>
<div class="tab-pane fade" id="pills-info" role="tabpanel" aria-labelledby="pills-info-tab">
<!-- info-panel-start -->
<p>ref: <a href="https://minimals.cc/auth/register-unprotected"
target="_blank">https://minimals.cc/auth/register-unprotected</a> </p>
<!-- info-panel-end -->
</div>
</div>
<!-- .............Nav-Tab End............. -->
</div>
</section>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>