-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmen.html
More file actions
117 lines (94 loc) · 4.09 KB
/
Copy pathmen.html
File metadata and controls
117 lines (94 loc) · 4.09 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Project Html & Css #1 "</title>
<link rel="stylesheet" href="miramstyle.css">
</head>
<body>
<header>
<div class="logo">
<h1>VELORA</h1>
</div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="new-arrivals.html">New Arrivals</a></li>
<li><a href="women.html">Women</a></li>
<li><a href="men.html">Men</a></li>
<li><a href="collection.html">Collection</a></li>
<li><a href="sale.html">Sale</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="icons">
<a href="#search"> Search 🔍</a>
<a href="#Account"> Account 👤 </a>
<a href="#Cart"> Cart 🛒</a>
</div>
</header>
<main>
<section class="men-collection">
<h2> Men's Collection</h2>
<p> Discover timeless fashion with elegant styles
designed for every occasion.</p>
</section>
<section class="products">
<div class="card">
<img src="https://prod-img.thesouledstore.com/public/theSoul/uploads/catalog/product/1721196591_1975140.jpg?v=2 " alt="Casual Shirt" width="300">
<h3>Casual Shirt</h3>
<p>$49.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src="https://jakameneg.b-cdn.net/wp-content/uploads/2025/04/JK38SF02M105-Coffee-016-1-scaled-800x1040.jpg "alt="Classic Suit " width="300">
<h3>Classic Suit</h3>
<p> $129.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src=" https://i.pinimg.com/originals/6f/79/af/6f79af64e7c22bd45fcd84ae81e7409c.jpg "alt="Polo T-Shirt" width="300">
<h3>Polo T-Shirt</h3>
<p> $39.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src="https://images.urbndata.com/is/image/UrbanOutfitters/69344786_106_b?$xlarge$&fit=constrain&qlt=80&wid=640 "alt="Blue Jeans " width="300">
<h3>Blue Jeans</h3>
<p> $69.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src="https://mediaslide-europe.storage.googleapis.com/eastwest/pictures/1760/6024/large-1610640671-ca19706882de5522a102fd0e6309ec95.jpg?v=1619688854"alt="Leather Jacket" width="300">
<h3>Leather Jacket</h3>
<p> $159.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src="https://5.imimg.com/data5/SELLER/Default/2025/3/495358274/GO/LU/CE/123846584/mens-plain-hoodies-1000x1000.jpg "alt="Hoodie" width="300">
<h3>Hoodie</h3>
<p> $59.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src="https://media.gq.com/photos/6865591870f5b3494a6ea4a7/3:4/w_748%2Cc_limit/2505-GQR-Inlines-WhiteSneakers-Adidas-0817.jpg "alt="White Sneakers" width="300">
<h3>White Sneakers</h3>
<p> $119.99</p>
<button>Add to Cart</button>
</div>
<div class="card">
<img src=" https://www.naviforce.com/uploads/28ff221e5.jpg "alt="Wrist Watch" width="300">
<h3>Wrist Watch</h3>
<p> $1700.00</p>
<button>Add to Cart</button>
</div>
</section>
</main>
<footer>
<h2>VELORA</h2>
<p>Fashion for Every Style.</p>
<p>© 2026 VELORA. All Rights Reserved.</p>
</footer>
</body>
</html>