-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-look.html
executable file
·82 lines (74 loc) · 2.72 KB
/
new-look.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
<!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" />
<link rel="stylesheet" href="/product-boyfriend-jeans.css" />
<link rel="stylesheet" href="reset.css" />
<!-- header css link -->
<title>Product</title>
</head>
<body>
<!-- header html code -->
<div id="product-boyfriend-jeans">
<!-- Product page header START -->
<div class="product-page-header">
<div class="header-offer-banner">
<p class="header-offer-msg">
🎉 The Party Starts Now! 30-70% Off Absolutely Everything! 🎁
</p>
</div>
<div class="header-page-info">
<ul class="header-page-ul-list">
<li class="header-page-ul-list-1">Women</li>
<li class="header-page-ul-list-2">></li>
<li class="header-page-ul-list-3">Home</li>
</ul>
</div>
<div class="header-product-category">
<div class="header-product-category">
<h1 class="header-product-category-h1">NEW LOOK</h1>
</div>
</div>
</div>
<!-- Product page header END -->
</div>
<div class="prod-container">
<!-- <div>
<img src="https://cdn.shopify.com/s/files/1/0293/9277/products/KariRuchedMiniDress-Black_MER_468x.jpg?v=1638908613"/>
<p>THE PARTY HAS STARTED! 30-70% OFF EVERYTHING!</p>
<a style="color:black" href="#">Cozy cool sweater mini</a>
<div id="usd">
<div id="usd1">USD 49$</div>
<div id="usd2">USD 29$</div>
</div>
</div>
<div></div>
<div></div>
<div></div> -->
</div>
<!-- <div id="container"></div> -->
</body>
<script src="product-boyfriend-jeans.js"></script>
</html>
<!-- <script>
var div = document.createElement("div");
var img = document.createElement("img");
img.setAttribute("src" , "https://cdn.shopify.com/s/files/1/0293/9277/products/KariRuchedMiniDress-Black_MER_468x.jpg?v=1638908613")
var p = document.createElement("p");
p.textContent="THE PARTY HAS STARTED! 30-70% OFF EVERYTHING!";
var a = document.createElement("a");
a.textContent="Cozy cool sweater mini";
var subdiv = document.createElement("div");
subdiv.setAttribute("id" , "usd");
var subdiv1 = document.createElement("div");
subdiv1.setAttribute("id" , "usd1");
subdiv1.textContent="USD 49$";
var subdiv2 = document.createElement("div");
subdiv2.setAttribute("id" , "usd2");
subdiv2.textContent="USD 49$";
subdiv.append(subdiv1 , subdiv2);
div.append(img , p ,a ,subdiv);
document.querySelector(".prod-container").append(div);
</script> -->