forked from ugbasawo/devops-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsproductf3.html
125 lines (114 loc) · 4.18 KB
/
sproductf3.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
<!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">
<title>Projet</title>
<script src="https://kit.fontawesome.com/9a6ad59c4f.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="header">
<a href="#"><img onclick="window.location.href='index.html';" src="img/logo.png" class="logo" alt=""></a>
<div>
<ul id="navbar">
<li><a href="index.html" >Home</a></li>
<li><a class="active" href="shop.html">Shop</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="cart.html"><i class="fa-solid fa-bag-shopping"></i></a></li>
</ul>
</div>
</section>
<section id="prodetails" class="section-p1">
<div class="single-pro-image">
<img src="img/products/f3.PNG" width="100%" id="mainimg" alt="">
<div class="small-img-group">
<div class="small-img-col" >
<img src="img/products/f3.PNG" width="100%" class="small-img">
</div>
<div class="small-img-col" >
<img src="img/products/f31.PNG" width="100%" class="small-img">
</div>
<div class="small-img-col" >
<img src="img/products/f32.PNG" width="100%" class="small-img">
</div>
<div class="small-img-col" >
<img src="img/products/f33.PNG" width="100%" class="small-img">
</div>
</div>
</div>
<div class="single-pro-details">
<h6>Home / Dresses</h6>
<h4>Women's Fashion Dresses</h4>
<span>Batwing Sleeve Button Placket Shirt Dress (No Belt)</span>
<h2>150DH</h2>
<select>
<option>Select Size</option>
<option>XL</option>
<option>XXL</option>
<option>Small</option>
<option>Large</option>
</select>
<input type="number" value="1">
<button class="normal" id="dakbutton">Add to Cart</button>
<h4>Product details</h4>
<span >Robe de soirée en dentelle blanche pour femmes, élégante, sans manches, courte, style Boho, tenue de plage, féerique, été
</span>
</div>
</section >
<section id="shopbackbutton" >
<button class="normal" onclick="window.location.href='shop.html';">Go back to Shop page </button>
</section>
<footer class="section-p1">
<div clas="col">
<img src="img/logo.png" id="logo1" alt="">
<h4>contact :</h4>
<p><strong>Adress : </strong> Rue STOKHOLM APPT 6 OCEAN RABAT</p>
<p><strong>Phone : </strong>+212642660196</p>
<p><strong>hours : </strong> 10:00 AM - 06:00 PM, MON - SAT</p>
<div class="follow "><br>
<h4>Follow us :</h4>
<div class="icon">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
</div>
</div>
</div>
<div id="about" class="col">
<h4>About :</h4>
<a href="#">About us</a>
<a href="#">Delivery information</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms & Conditions</a>
<a href="#">Contact us</a>
</div>
<div id="myacc" class="col">
<h4>My Account:</h4>
<a href="#">Sign in</a>
<a href="#">View Cart</a>
<a href="#">My Wishlist</a>
<a href="#">Track My Order</a>
<a href="#">Help</a><br>
<p id="xdd">Secured Payement Gateways</p><br>
<img src="img/pay.jpg">
</div>
</footer>
<script>
var mainimg=document.getElementById("mainimg");
var smallimg=document.getElementsByClassName("small-img")
smallimg[0].onclick=function(){
mainimg.src=smallimg[0].src; }
smallimg[1].onclick=function(){
mainimg.src=smallimg[1].src; }
smallimg[2].onclick=function(){
mainimg.src=smallimg[2].src; }
smallimg[3].onclick=function(){
mainimg.src=smallimg[3].src; }
</script>
<script src="index.js"></script>
</body>
</html>