-
Notifications
You must be signed in to change notification settings - Fork 0
/
smartwatches.html
96 lines (88 loc) · 4.21 KB
/
smartwatches.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="navbar">
<div id="headline">
<a href="index.html"><img src="logo-removebg-preview.png" width="150px" height="40px">
</a>
</div>
<div id="ul">
<ul>
<a href="index.html" class="li" onmouseenter="change_Bg(this)" onmouseleave="return_Bg(this)">
<li>HOME</li>
</a>
<a href="index.html" class="li" onmouseenter="change_Bg(this)" onmouseleave="return_Bg(this)">
<li>PRODUCTS</li>
</a>
<a href="contact us.html" class="li" onmouseenter="change_Bg(this)" onmouseleave="return_Bg(this)">
<li>CONTACTS</li>
</a>
<a href="Abuout.html" class="li" onmouseenter="change_Bg(this)" onmouseleave="return_Bg(this)">
<li >ABOUT</li>
</a>
</ul>
</div>
<div id="icons">
<a href="https://www.facebook.com"><i class="fa-brands fa-facebook"></i></a>
<a href="https://twitter.com"><i class="fa-brands fa-square-twitter"></i></a>
<a href="https://www.instagram.com"><i class="fa-brands fa-square-instagram"></i></a>
<a href="login.html" style="margin-left: 50px;"><i class="fa-solid fa-cart-shopping"></i></a>
<a href="login.html"><i class="fa-regular fa-heart"></i></a>
<a href="login.html"><i class="fa-solid fa-user"></i></a>
</div>
</header>
<!-- smartwatches products (5 products ) -->
<div id="cont">
<div class="polaroid">
<img class="pro" src="smart watches/ivan-shilov-KiAYZZjpjkQ-unsplash.jpg" alt="" style="width:100%" height="200px">
<div class="container">
<a href="product-smartwatch.html"><p>smart watch 1 </p></a>
<a href="" style="margin-left: 100px; color: gray;"><i class="fa-solid fa-cart-shopping"></i></a>
<p>price <strong>2000</strong> <br> <strong><del>2500</del></strong> </p>
</div>
</div>
<div class="polaroid">
<img class="pro" src="HD-wallpaper-garmin-watches-smart-watch-watches-technology-garmin-high-tech.jpg" alt="" style="width:100%" height="200px">
<div class="container">
<a href="product-smartwatch.html" ><p>smart watch 2</p></a>
<a href="" style="margin-left: 100px; color: gray;"><i class="fa-solid fa-cart-shopping"></i></a>
<p>price <strong>2000</strong> <BR><strong><del>2500</del></strong></p>
</div>
</div>
<div class="polaroid">
<img class="pro" src="smart watches/artur-luczka-N1zRvlXf-IM-unsplash.jpg" alt="" style="width:100%" height="200px">
<div class="container">
<a href="product-smartwatch.html"><p>smart watch 3 </p></a>
<a href="" style="margin-left: 100px; color: gray;"><i class="fa-solid fa-cart-shopping"></i></a>
<p>price <strong>2000</strong> <BR><strong><del>2500</del></strong> </p>
</div>
</div>
<div class="polaroid">
<img class="pro" src="smart watches/4.jpg" alt="" style="width:100%" height="200px">
<div class="container">
<a href="product-smartwatch.html"><p>smart watch 4 </p></a>
<a href="" style="margin-left: 100px; color: gray;"><i class="fa-solid fa-cart-shopping"></i></a>
<p>price <strong>2000</strong> <br><del>2500</del> </p>
</div>
</div>
<div class="polaroid">
<img class="pro" src="smart watches/3.jpg" alt="" style="width:100%" height="200px">
<div class="container">
<a href="product-smartwatch.html"><p>smart watch 5 </p></a>
<a href="" style="margin-left: 100px; color: gray;"><i class="fa-solid fa-cart-shopping"></i></a>
<p> price <strong>2000</strong> <br><strong><del>2500</del></strong> </p>
</div>
</div>
</div>
<script src="project.js"></script>
</body>
</html>