-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
124 lines (113 loc) · 4.79 KB
/
checkout.html
File metadata and controls
124 lines (113 loc) · 4.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout - Finnwick</title>
<link rel="stylesheet" href="checkout.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<img class="logo" src="./Assets/Logo.png" alt="Finnwick Logo">
<div>
<button><a href="signup.html"><img src="./Assets/Login.svg" alt="Login"></a></button>
<div class="menu">
<img src="./Assets/Menu.svg" alt="Menu" id="menu-toggle">
</div>
</div>
</header>
<div class="mobile-menu" id="mobile-menu">
<div class="menu-header">
<button class="close-menu" id="close-menu">✕</button>
</div>
<nav class="menu-items">
<a href="index.html" class="menu-item">
<img src="./Assets/Vector.png" alt="Home">
<div class="menu-text">Home</div>
</a>
<a href="trending.html" class="menu-item">
<img src="./Assets/Vector(1).png" alt="What's New">
<div class="menu-text">What's New</div>
</a>
<a href="checkout.html" class="menu-item">
<img src="./Assets/Vector(2).png" alt="My List">
<div class="menu-text">my list</div>
</a>
<a href="products.html" class="menu-item">
<img src="./Assets/Group.png" alt="Shop">
<div class="menu-text">shop</div>
</a>
<a href="aboutus.html" class="menu-item">
<img src="./Assets/Vector(3).png" alt="About Us">
<div class="menu-text">about us</div>
</a>
<a href="contactus.html" class="menu-item">
<img src="./Assets/Vector(4).png" alt="Help Center">
<div class="menu-text">help center</div>
</a>
</nav>
</div>
<div class="checkout-container">
<div class="product-image">
<img src="./Assets/Checkout.png" alt="Arlo Pro 5S 2K Camera">
</div>
<div class="checkout-details">
<h1 class="checkout-title">product checkout</h1>
<h2 class="product-name">Arlo Pro 5S 2K</h2>
<p class="product-price">$180</p>
<div class="card-details">
<h2>card details</h2>
<div class="form-group">
<label for="card-number">Card number</label>
<input type="text" id="card-number">
</div>
<div class="form-group">
<label for="expiration">expiration date</label>
<input type="text" id="expiration">
</div>
<div class="form-group">
<label for="cvv">cvv</label>
<input type="text" id="cvv">
</div>
<div class="form-group">
<label for="card-holder">card holder</label>
<input type="text" id="card-holder">
</div>
<button class="pay-btn">pay</button>
</div>
</div>
</div>
<footer>
<div>
<h3 class="shop-title">FINNWICK</h3>
<div class="social-media">
<a href="https://facebook.com" target="_blank"><img src="./Assets/Facebook.svg" alt="Facebook"></a>
<a href="https://linkedin.com" target="_blank"><img src="./Assets/LinkedIn.svg" alt="LinkedIn"></a>
<a href="https://youtube.com" target="_blank"><img src="./Assets/Youtube.svg" alt="YouTube"></a>
<a href="https://instagram.com" target="_blank"><img src="./Assets/Insta.svg" alt="Instagram"></a>
</div>
</div>
<div class="footer-container">
<div>
<p class="first">Customer Support</p>
<p><a href="contactus.html">Contact Us</a></p>
<p><a href="aboutus.html">Help Center / FAQ</a></p>
<p><a href="announcements.html">Shipping & Delivery</a></p>
</div>
<div>
<p class="first">Information</p>
<p><a href="aboutus.html">About Us</a></p>
<p><a href="announcements.html">Our Blog</a></p>
<p><a href="announcements.html">Privacy Policy</a></p>
</div>
<div>
<p class="first">Shop</p>
<p><a href="products.html">All Products</a></p>
<p><a href="trending.html">New Arrivals</a></p>
<p><a href="checkout.html">Checkout</a></p>
</div>
</div>
</footer>
</body>
</html>