-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
148 lines (135 loc) · 6.35 KB
/
test.html
File metadata and controls
148 lines (135 loc) · 6.35 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@import url("styles.css");
</style>
</head>
<body>
<header class="homepage-header">
<img style="display: inline;" src="images/logo.png" alt="logo" width = "60" height = "50"/>
<h1 class = "homepage-header" style="display: inline;">A&F Boutique</h1>
</header>
<div>
<nav id="homepage-nav">
<ul id="homepage-nav">
<a class="homepage-nav-elements" href="index.html">Home</a>
<a class="homepage-nav-elements" href="products.html">Products</a>
<a class="homepage-nav-elements" href="contact.html">Contact</a>
<a class="homepage-nav-elements" href="login.html">Login</a>
</ul>
</nav>
</div>
<section>
<div class="product-container">
<div class="product">
<img src="images/abaya1.png">
<h3 class = "h3-products"> A&F Signature Nobu Abaya</h3>
<p>
Our most popular abaya yet! This elegant piece is a staple in any modest woman's wardrobe. It is a versatile piece that can be both casual and formal.
</p>
<p style="font-size: 20px">
$80.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya2.png">
<h3> A&F Green Nobu Abaya</h3>
<p>
The classic Nobu Abaya in an elegant forest green color. Pair this with our forest green modal hijab for the complete look!
</p>
<p style="font-size: 20px">
$85.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya3.png">
<h3> White Slip Abaya</h3>
<p>
An essential piece in any woman's closet.
</p>
<p style="font-size: 20px">
$78.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya4.png">
<h3> Nahla Cloak Abaya Sky Blue</h3>
<p>
A classic oversized flowy open jacket style abaya perfect for formal occasions.
</p>
<p style="font-size: 20px">
$130.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya5.png">
<h3> Chocolate Mocha Jilbab</h3>
<p>
A basic one piece jilbab made of high quality satin from Italy.
</p>
<p style="font-size: 20px">
$85.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya6.png">
<h3> Al-Zahraa Jilab</h3>
<p>
The Verdant Veil, made from a high quality satin that looks to imitate the color of thick vegetation found in scenic destinations.
</p>
<p style="font-size: 20px">
$100.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya7.png">
<h3> Black Swan Abaya</h3>
<p>
A sleek, sophisticated garment that exudes timeless elegance. Crafted from high-quality black nida fabric, it features a flowing silhouette that drapes gracefully around the body. The abaya is adorned with delicate lace detailing along the sleeves and hem, adding a touch of femininity to its classic design.
</p>
<p style="font-size: 20px">
$120.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
<div class="product">
<img src="images/abaya8.png">
<h3> Silent Steel Abaya</h3>
<p>
The Silent Steel Abaya embodies understated sophistication with its neutral grey hue and minimalist design. The perfect abaya for any occasion
</p>
<p style="font-size: 20px">
$120.00
</p>
<button class="button" onclick="window.location.href='cart.html'" style="font-family:Georgia, 'Times New Roman', Times, serif">
<i class="fas fa-shopping-cart">Add to cart</i>
</button>
</div>
</div>
</section>
<footer class="home-footer">
<h5>© Fatima Asif, Aroush Qureshi. A&F Boutique. All Rights Reserved.</h5>
</footer>
</body>
</html>