-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingalProduct.html
More file actions
80 lines (71 loc) · 3.31 KB
/
Copy pathsingalProduct.html
File metadata and controls
80 lines (71 loc) · 3.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Singal Product Page</title>
<!-- css link -->
<link rel="stylesheet" href="./Assets/Style/style.css">
<!-- bootstrap link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<!-- navbar section started -->
<section class="main-navbar d-flex align-items-center">
<div class="container d-flex justify-content-between align-items-center">
<div>
<p class="text-light fs-4 mt-2">Buy / Sells Corner</p>
</div>
<div id="loginDiv">
<div id="login" class="nav-content d-flex gap-2">
<button id="logoutBtn" class="btn btn-dark ">Logout</button>
<img id="userIcon"
src="https://wallpapers.com/images/featured/plain-black-background-02fh7564l8qq4m6d.jpg"
alt="userIamge">
</div>
</div>
</div>
</section>
<!-- navbar section ended -->
<div class="container text-center mt-3">
<h1 id="main_product_head">Google Pixle 4x</h1>
</div>
<!-- singal card section started -->
<section class="container d-flex justify-content-center gap-4 flex-wrap">
<div class="main_card_box rounded-4 mt-4 p-3">
<!-- <div class="d-flex gap-5 flex-wrap">
<div class="main_card_image rounded-4">
<img id="product_image" src="" alt="">
</div>
<div class="mt-3">
<h3 id="product_price">0000</h3>
<h6 class="mt-5" id="product_title">Google pixel 4x</h6>
<p class="mt-2" id="product_description">Mobile for sale 4gb ram 64rom no exchange possible</p>
<div class="user_section rounded-4 mt-3 d-flex align-items-center gap-2">
<div>
<img id="user_image" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQOtu74pEiq7ofeQeTsco0migV16zZoBwSlGg&s" alt="">
</div>
<div class="mt-3">
<h6 id="userName">Haseeb Ur Rehman</h6>
<p id="phone_number">+92 3167979839</p>
</div>
</div>
<div>
<a href=""><button id="whatsapp_btn" class="btn btn-success mt-3">Whatsapp</button></a>
</div>
</div>
</div> -->
</div>
</section>
<!-- singal card section ended -->
<!-- javascript link -->
<script type="module" src="./Scripts/singalProduct.js"></script>
<!-- SWEETALERT LINK -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.4.10/dist/sweetalert2.all.min.js"></script>
<!-- bootstrap link -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>