-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (46 loc) · 2.52 KB
/
Copy pathindex.html
File metadata and controls
57 lines (46 loc) · 2.52 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
<html>
<head>
<script src="dogecoin.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.min.js"
integrity="sha512-WW8/jxkELe2CAiE4LvQfwm1rajOS8PHasCCx+knHG0gBHt8EXxS6T6tJRTGuDQVnluuAvMxWF4j8SNFDKceLFg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css"
integrity="sha512-b2QcS5SsA8tZodcDtGRELiGv5SaKSk1vDHDaQRda0htPYWZ6046lr3kJ5bAAQdpV2mmA/4v0wQF9MyU6/pDIAg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="scrollbar.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="overwrite.css">
<title>Dogestore</title>
<script src="params.js"></script>
<script src="index.js"></script>
</head>
<body>
<header class="p-3 mb-3 border-bottom">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href=".." class="d-flex align-items-center mb-3 mb-lg-0">
<img src="/doge.png" width="15%">
<div>
<span style="color: #EDA906">Doge</span>store
<p style="font-size: 12px"><span style="color: #A3C9A6">much wow...</span> <span style="color: #d77575">many price...</span> <span style="color: #7da9be">so responsive...</span></p>
</div>
</a>
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
<!-- <li><a href="/" class="nav-link px-2">Products</a></li> -->
</ul>
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search" onsubmit="event.preventDefault()">
<input id="search" type="search" class="form-control" placeholder="Search..." aria-label="Search"
oninput="handleSearchInput(event)">
</form>
</div>
</div>
</header>
<div class="container">
<div id="products" class="row" style="margin-top: 50px"></div>
</div>
</body>
</html>