-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewArrival.html
109 lines (98 loc) · 4.21 KB
/
newArrival.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
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- 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" />
<script src="https://kit.fontawesome.com/007fdc8c24.js" crossorigin="anonymous"></script>
<title>New Arrivals Items</title>
<link rel="stylesheet" href="./styles/style.css" />
</head>
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<style>
#new-caresoul {
margin: 20px;
text-align: center;
color: brown;
text-shadow: chocolate;
}
.carouselDiv img {
height: 800px;
width: 60%;
}
#heading {
margin: 20px;
}
</style>
<body>
<nav id="nav-main"></nav>
<h1 id="new-caresoul">Hottest of the day</h1>
<div id="carouselExampleCaptions" class="carousel slide carouselDiv" data-bs-ride="carousel">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active"
aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img id="firstImg"
src=" https://des.gbtcdn.com/uploads/pdm-desc-pic/Electronic/image/2021/02/08/20210208180757_24458.jpg"
class="d-block w-100" width="200" alt="..." />
<div class="carousel-caption d-none d-md-block">
<h5 id="firsth5">In Smart TV Series</h5>
<p id="firstp">
Smart TV Box Android 10.0 Allwinner H616 4GB 32GB 64GB 6K H.265
Media Player 3D Video 2.4G 5GHz WiFi Bluetooth Set Top Box - Black
2GB+16GB US Plug
</p>
</div>
</div>
<div class="carousel-item">
<img id="secImg" src="https://des.gbtcdn.com/storage/desc/6883820374342168576/16473/2c4407196541.jpg"
class="d-block w-100" alt="..." />
<div class="carousel-caption d-none d-md-block">
<h5 id="sech5">In Mobile Phones Series</h5>
<p id="secp">
2022 Latest Smartphone Global Version 7.2 Inch HD Screen Smart
phone Android 12GB RAM 512GB ROM Unlocked Dual Sim Mobile Phones
</p>
</div>
</div>
<!-- <p>New Global Version Cell Mobile Phones p50 pro 16G+768GB Daul Sim 5G Celulares Cameras Telefon 6800mAh Battery Smart phone - Gold </p> -->
<div class="carousel-item">
<img src="https://gloimg.gbtcdn.com/soa/gb/item/6615272824267153408/15954/goods_img-v1/62c79ac17135.jpg"
class="d-block w-100" alt="..." />
<div class="carousel-caption d-none d-md-block">
<h5>In Laptop Series</h5>
<p>
2022 Laptop Lenovo Xiaoxin Air 14 With Latest 10th Gen Core i7 i5
AMD 4600H 16GB Ram 512GB SSD MX350 DDR5 Dedicated Metal Body
</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div>
<h1 id="heading">Latest items</h1>
<div class="container"></div>
</div>
<div class="footer"></div>
</body>
</html>
<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>
<script src="./scripts/newArrival.js" type="module"></script>