forked from rmt-27-amaryllis-fox/p2-iproject-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
188 lines (176 loc) · 7.64 KB
/
index.html
File metadata and controls
188 lines (176 loc) · 7.64 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!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="./style.css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>Applu</title>
</head>
<body>
<script src="https://kit.fontawesome.com/489fac53fd.js" crossorigin="anonymous"></script>
<!-- NAVIGATION -->
<section id="navigation">
<a><i class="fa-solid fa-apple-whole"></i></a>
<nav>
<ul class="nav_links">
<li class="nav-item"><a href="">Home</a></li>
<li class="nav-item"><a href="">My Order</a></li>
</ul>
</nav>
<div class="sign">
<a href="">Sign in</a>
<a href="">Log out</a>
</div>
</section>
<!-- PRODUCT -->
<div class="product" data-aos="fade-up">
<h1>iPhone 14</h1>
<h3>Big and Bigger</h3>
<p>Our longest battery life ever</p>
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="" id="phone">
<a href="">Pre-order ></a>
</div>
<div class="product" data-aos="fade-up">
<h1>iPhone 14</h1>
<h3>Big and Bigger</h3>
<p>Our longest battery life ever</p>
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="">
<a href="">Pre-order ></a>
</div>
<div class="product" data-aos="fade-up">
<h1>iPhone 14</h1>
<h3>Big and Bigger</h3>
<p>Our longest battery life ever</p>
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="">
<a href="">Pre-order ></a>
</div>
<div class="end" data-aos="fade-up">
<h1>lorem ipsum</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim debitis nihil, eaque velit atque exercitationem soluta numquam corporis placeat autem quisquam modi repellendus ipsum rerum laborum, inventore asperiores. Obcaecati, fugiat esse ducimus dicta autem vel iusto cupiditate corrupti accusantium, impedit sunt error repudiandae consequuntur? Aspernatur velit nostrum at nesciunt mollitia provident. Eum adipisci consequuntur omnis minus nostrum unde iste repudiandae porro ducimus. Cumque, esse perferendis incidunt similique perspiciatis sequi soluta omnis corporis consequatur officiis, enim facilis et fugit, vitae aliquam eius eaque odit eveniet quidem quo recusandae fugiat. Omnis officiis nulla recusandae reprehenderit a! Sint possimus impedit ratione magnam? Dicta, veniam sequi. Sunt maxime alias obcaecati placeat optio tenetur, mollitia eos beatae totam repudiandae, adipisci voluptas vero. Ex et, corporis aut hic, laborum placeat optio expedita quo facere totam ipsum distinctio. Mollitia voluptatibus, ipsa ex iste architecto beatae consequuntur ullam dolore, quos magnam fuga earum vitae aliquid aspernatur veritatis atque.</p>
</div>
<!-- LOGIN -->
<div id="login">
<h1>Login for more feature!</h1>
<form action="">
<h2>Your Email</h2>
<input type="text">
<h2>Your Password</h2>
<input type="password">
<div class="button-submit">
<button type="submit">Login <i class="fa-solid fa-arrow-right"></i></button>
</div>
</form>
<div class="link-create">
Don't have an Applu ID? <a href="">Create yours now <i class="fa-solid fa-circle-right"></i></a>
</div>
</div>
<!-- REGISTER -->
<div id="register">
<h1>Create Your Applu ID</h1>
<span>One Apple ID is all you need to access all Apple services.</span>
<span>Already have an Apple ID? <a href="">Login now</a> </span>
<form action="">
<input type="text" placeholder="name@example.com">
<input type="password" placeholder="Password">
<div class="button-submit-register">
<button type="submit">Register</button>
</div>
</form>
</div>
<!-- ADD PRODUCT -->
<div id="add-Product">
<span>New</span>
<h1>Pre-order iPhone 14 Pro</h1>
<div class="ctrl-choose">
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="">
<div class="pick-color">
<h3>Pick your favourite color</h3>
<span>Color - Gold</span>
<ul>
<li id="gold"><button></button></li>
<li id="silver"><button></button></li>
<li id="space-black"><button></button></li>
</ul>
<h3>How much space do you need?</h3>
<span>Storage - 128GB</span>
<ul>
<li><button>128GB</button></li>
<li><button>256GB</button></li>
<li><button>512GB</button></li>
</ul>
<a href="" class="order"><button>Order <i class="fa-solid fa-plus"></i></button></a>
</div>
</div>
</div>
<!-- My Order -->
<div id="my-order">
<div>
<h1>You Order are Empty</h1>
<p>to see your ordered list, please order it first!</p>
</div>
<div data-aos="fade-up" class="my-order-product">
<span>My Order</span>
<h1>iPhone 14 Pro</h1>
<div class="ctrl-choose">
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="">
<div class="pick-color">
<h3>Color : </h3>
<p>Color - Gold</p>
<h3 class="capacity">Capacity : </h3>
<p>Storage - 128GB</p><br>
<h3 class="capacity">Price : </h3>
<p>USA - $200</p><br>
<h3 class="capacity">CPU : </h3>
<p>Hexa-core</p><br>
<h3 class="capacity">RAM : </h3>
<p>4GB</p><br>
</div>
</div>
</div>
<div data-aos="fade-up" class="my-order-product">
<span>My Order</span>
<h1>iPhone 14 Pro</h1>
<div class="ctrl-choose">
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="">
<div class="pick-color">
<h3>Color : </h3>
<p>Color - Gold</p>
<h3 class="capacity">Capacity : </h3>
<p>Storage - 128GB</p><br>
<h3 class="capacity">Price : </h3>
<p>USA - $200</p><br>
<h3 class="capacity">CPU : </h3>
<p>Hexa-core</p><br>
<h3 class="capacity">RAM : </h3>
<p>4GB</p><br>
</div>
</div>
</div>
<div data-aos="fade-up" class="my-order-product">
<span>My Order</span>
<h1>iPhone 14 Pro</h1>
<div class="ctrl-choose">
<img src="https://i.ibb.co/tqKBTwh/iphone-14.png" alt="">
<div class="pick-color">
<h3>Color : </h3>
<p>Color - Gold</p>
<h3 class="capacity">Capacity : </h3>
<p>Storage - 128GB</p><br>
<h3 class="capacity">Price : </h3>
<p>USA - $200</p><br>
<h3 class="capacity">CPU : </h3>
<p>Hexa-core</p><br>
<h3 class="capacity">RAM : </h3>
<p>4GB</p><br>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>