-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
61 lines (51 loc) · 1.79 KB
/
product.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./productstyle.css">
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Document</title>
</head>
<body>
<header class="header ">
<div class="wrapper paddingclass">
<div class="section-left">
<span class="title">EcommerceApp</span>
< <form id="form" role="search">
<input type="search" id="query" name="q"
placeholder="Search..."
aria-label="Search through site content">
<button class="search_btn"><i class="fa fa-search" style="font-size:20px"></i></button>
</form>
</div>
<div class="section-right">
<div class="bell_icon">
<button >
<i class="fa fa-bell" style="font-size:36px"></i>
</button>
</div >
<button class="profile">
<img src="avatar.jpg" alt="Avatar" class="avatar">
</button>
</div>
</div>
</header>
<div class="main">
<div class="single-prod-Img">
<img id="img" src="avatar.jpg">
</div>
<div class="prod-details">
<h2 id="singleTitle">Title</h2>
<div class="single-rating">
</div>
<p id="description">description uhgdhvdhvjhdvjdvgdvvdjhdvvdgvdvdvhdvghdvgdvddvhdv</p>
<p id="singlePrice">$238.98</p>
<button class=" danger btn cart-single-button">ADD TO CART</button>
</div>
</div>
<script src="productscript.js" ></script>
</body>
</html>