Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

History

History
History
111 lines (106 loc) 路 3.62 KB

File metadata and controls

111 lines (106 loc) 路 3.62 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Python | Scripts</title>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/scripts.css" />
</head>
<body>
<header>
<!-- navbar -->
<nav
class="navbar navbar-expand-lg navbar-light bg-transparent fixed top"
style="margin-top: 0; padding: 0"
>
<div class="container-fluid">
<a class="navbar-brand mx-2" href="#"
><i
class="fab fa-python"
style="font-size: 20px; color: rgb(195, 228, 79)"
></i
></a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#"
>Scripts</a
>
</li>
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="page_contactUs.html"
>Contact Us</a
>
</li>
</ul>
<form class="d-flex">
<input
class="form-control me-2"
id="search"
type="search"
placeholder="Search"
aria-label="Search"
/>
<button class="btn btn-outline-success" type="submit">
<i class="fas fa-search"></i>
</button>
</form>
</div>
</div>
</nav>
</header>
<!-- intro-heading -->
<h1 class="top-heading text-center m-20">Scripts Available</h1>
<!-- cards -->
<div class="container">
<div id="card-holder" class="row"></div>
</div>
<!-- Load more -->
<div class="button">
<button class="btn btn-outline-success" id="load-more">Load more</button>
</div>
<!-- <div id="loadmore">
<div class="container">
<div id="card-holder-more" class="row"></div>
</div>
</div> -->
<!-- Javascript tags -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
<script type="text/javascript" src="datastore.json"></script>
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.