forked from avinashkranjan/Amazing-Python-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.html
More file actions
119 lines (109 loc) 路 4.54 KB
/
scripts.html
File metadata and controls
119 lines (109 loc) 路 4.54 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
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
112
113
114
115
116
117
118
119
<!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/darkMode.css" />
<link rel="stylesheet" href="css/scripts.css" />
<link rel="stylesheet" href="css/common.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">
<img
src="https://github.com/avinashkranjan/Amazing-Python-Scripts/assets/98682478/3691f826-ca00-4baf-8bb9-8a4ad87d3a01"
class="fab fa-python"
style="
width: 250px;
height:37px;
margin-top: 12px ;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 20px;
"
><img/>
<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>
<!-- Toggle button for light/dark mode -->
<div class="toggle-container mx-2" onclick="toggleDarkMode()">
<div class="toggle-circle"></div>
</div>
</div>
</div>
</div>
</nav>
<div onclick="topFunction()" id="top">
<img src="images/up-arrow.svg" alt="" width="100" class="top" style="
position: fixed;
right: 0;
bottom: 20px;cursor: pointer;">
</div>
</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> -->
<!--Pagination-->
<div class="pagination-container">
<svg class="prev-next" id="prevPage" height="96" viewBox="0 0 24 24" width="96" xmlns="http://www.w3.org/2000/svg">
<path d="M15.41 16.09l-4.58-4.59 4.58-4.59L14 5.5l-6 6 6 6z" />
<path d="M0-.5h24v24H0z" fill="none" />
</svg>
<div class="page-number-circle">
<span id="page-number"></span>
</div>
<svg class="prev-next" id="nextPage" height="96" viewBox="0 0 24 24" width="96" xmlns="http://www.w3.org/2000/svg">
<path d="M8.59 16.34l4.58-4.59-4.58-4.59L10 5.75l6 6-6 6z" />
<path d="M0-.25h24v24H0z" fill="none" />
</svg>
</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>
<script src="js/mode.js"></script>
<script src="js/common.js"></script>
</body>
</html>