forked from ghulamabbas2/shopit-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
steps.html
40 lines (37 loc) · 1.23 KB
/
steps.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout Steps</title>
<link
rel="stylesheet"
type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="//db.onlinewebfonts.com/c/157c6cc36dd65b1b2adc9e7f3329c761?family=Amazon+Ember"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" type="text/css" href="./design.css" />
</head>
<body>
<div class="checkout-progress d-flex justify-content-center mt-5">
<div class="triangle2-completed"></div>
<div class="step complete">Shipping Info</div>
<div class="triangle-completed"></div>
<div class="triangle2-active"></div>
<div class="step active">Payment</div>
<div class="triangle-active"></div>
<div class="triangle2-incomplete"></div>
<div class="step incomplete">Confirm Order</div>
<div class="triangle-incomplete"></div>
</div>
</body>
</html>