-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
126 lines (108 loc) · 5.16 KB
/
products.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="" type="image/x-icon">
<!--=============== BOXICONS ===============-->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="assets/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="assets/css/animate.css">
<!--=============== SWIPER CSS ===============-->
<link rel="stylesheet" href="assets/css/swiper-bundle.min.css">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title> المنتجات </title>
</head>
<body>
<style>
.particles-js-canvas-el {
height: 50% !important;
}
</style>
<!--=============== HEADER ===============-->
<header class="header" id="header">
<nav class="navbar">
<ul class="nav_menu">
<li><i class='bx bx-menu'></i></li>
</ul>
<ul class="nav_links">
<li><a href="index.html">الرئيسية</a></li>
<li><a href="products.html">المنتجات</a></li>
<li><a href="404.html">٤٠٤</a></li>
<li><i id='theme-button' class='bx bx-moon'></i></li>
</ul>
<div class="logo"><h2>جونيور </h2></div>
</nav>
</header>
<!--=============== MAIN ===============-->
<main class="main">
<!--=============== HOME ===============-->
<section class="home" id="particles-js">
<div class="row">
<div class="col-12 home_info wow fadeInRight">
<span>أهلا بكم , في</span>
<br>
<span class="big-span">صفحة المنتجات</span>
<br>
</div>
</div>
</section>
<!--=============== ABOUT ===============-->
<section class="search section" id="about">
<div class="section__title">
<h2><i class='bx bx-code'></i> اعمل سليدر بيتحرك <i class='bx bx-code-alt'></i></h2>
<a><i class='bx bxs-chevrons-down bx-tada'></i></a>
</div>
<div class="col-12">
<input placeholder="أبحث" class="input-search" type="text" id="place">
</div>
<div class="container">
<div class="row" id="products">
</div>
</div>
</section>
<!--=============== CONTACT ===============-->
<section class="contact" id="contact">
<div class="container">
<div class="row">
<div class="cart col-12">
<h2><i class='bx bx-code'></i>انا السلة ي حبيبي الي بتحط فيها منتجاتك<i class='bx bx-code-alt'></i>
</h2>
<i class='bx bx-cart-add bx-tada' ></i>
<span class="cart-counter">1</span>
<div class="cart-items">
</div>
</div>
</div>
</div>
</section>
</main>
<!--=============== FOOTER ===============-->
<footer class="footer section">
<div class="container">
<div class="row">
<div class="col-12">
<h2><i class='bx bx-code'></i> انت رايح فين الصفحة خلصت خلاص <i class='bx bx-code-alt'></i></h2>
</div>
</div>
</div>
</footer>
<!--=============== SCROLLREVEAL ===============-->
<script src=""></script>
<!--=============== SWIPER JS ===============-->
<!--=============== MIXITUP FILTER ===============-->
<script src=""></script>
<!--=============== MAIN JS ===============-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.min.js" integrity="sha384-ODmDIVzN+pFdexxHEHFBQH3/9/vQ9uori45z4JjnFsRydbmQbmL5t1tQ0culUzyK" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<script src="assets/js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script src="assets/js/particles.js"></script>
<script src="assets/js/search.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>