-
Notifications
You must be signed in to change notification settings - Fork 4
/
wearable_Devices.html
101 lines (89 loc) · 3.61 KB
/
wearable_Devices.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="../prostyles/main.css">
<link rel="stylesheet" href="../style/navbar.css">
<link rel="stylesheet" href="../style/footer.css">
</head>
<body>
<div id="top-navbar"></div>
<div id="salepic">
<img src="https://img.gkbcdn.com/s3/bn/2206/1500x125-62a9512c2b40c91d488eee03.jpg" alt="">
</div>
<div id="bigboxx">
<div id="leftcon">
<h2><b>Consumer Electronics</b></h2>
<a href="consumer_Electronics.html" class="anc"><h3>Consumer Electronics</h3></a>
<a href="wearable_Devices.html" class="anc"><h3>Wearable Devices</h3></a>
<a href="bluetooth_speaker.html" class="anc"><h3>Blutooth Speakers</h3></a>
<a href="consumer_Electronics.html" class="anc"><h3>Professional Instruments</h3></a>
<a href="headphones.html" class="anc"><h3>Headphones & Earphones</h3></a>
<a href="bluetooth_speaker.html" class="anc"><h3>Bluetooth & NFC Devices</h3></a>
<a href="consumer_Electronics.html" class="anc"><h3>Power Banks & charger</h3></a>
<a href="consumer_Electronics.html" class="anc"><h3>Memory Card</h3></a>
<!-- <a href=""><h3>Virtual Reality</h3></a>
<a href=""><h3>Projectors</h3></a>
<a href=""><h3>Cameras & Optics</h3></a>
<a href=""><h3>Video Games & Accessories</h3></a>
<a href=""><h3>Industrial & Scintific</h3></a>
<a href=""><h3>Apliances</h3></a> -->
</div>
<div class="SSlider">
<div class="slidenxt">
<img src="https://img.gkbcdn.com/s3/c/2202/111-6209f3ab2b40c91f10b1fdbd.gif" alt="">
</div>
</div>
<div id="forFilter">
<div>
<img src="https://img.gkbcdn.com/s3/b/Logo/tronsmart.jpg?v=788944783" alt="">
</div>
<div>
<img src="https://img.gkbcdn.com/s3/b/xiaomi.jpg" alt="">
</div>
<div>
<img src="https://img.gkbcdn.com/s3/b/Logo/huawei.jpg" alt="">
</div>
<div>
<img src="https://img.gkbcdn.com/s3/b/Logo/gamesir.jpg" alt="">
</div>
<div>
<img src="https://img.gkbcdn.com/s3/b/razer-6TQneIik.jpg" alt="">
</div>
<div>
<img src="https://img.gkbcdn.com/s3/b/Logo/oneplus.jpg" alt="">
</div>
<div>
<img src="https://img.gkbcdn.com/s3/b/Logo/kingston.jpg" alt="">
</div>
</div>
<div id="doFilter">
<img src="https://img.gkbcdn.com/s3/c/2205/BANG-62904bf72b40c91cb019ade1.png" alt="">
</div>
<div id="pgrid">
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
let main = document.getElementById("pgrid")
import {getData, appendData} from "../fetchappend/fetchpages.js"
let resp = await getData("./data/weaDevices.json");
console.log("respfrommodule", resp);
appendData(resp, main)
var user = JSON.parse(localStorage.getItem("user"))
if(user.name ==null){
document.getElementById("signin").innerText = "signin"
}
else{
document.getElementById("signin").innerText = user.name
}
let noofpro = JSON.parse(localStorage.getItem("addcart")) ||[]
document.getElementById("noofpro").innerText = noofpro.length
</script>
<script type="module" src="../Brand/main.js"></script>
<!-- <script src="wearable_Devices.js"></script> -->