-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflip.html
43 lines (43 loc) · 1.54 KB
/
flip.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
41
42
43
<!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">
<title>Document</title>
<link rel="stylesheet" href="flip.css">
</head>
<body>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<h1 style="font-size: 22px; margin-left: 15%;">Get to know <br> How much to pay</h1>
<img src="../../assets/cart-flipFront.png" alt="admire" style="width: 38%;margin-left: 15%;">
</div>
<div class="flip-card-back">
<!-- <h2>Back Side</h2> -->
<table id="total">
<tr>
<td>Subtotal:</td>
<td>₹ 45000</td>
</tr>
<tr>
<td>GST:</td>
<td>₹ 1500</td>
</tr>
<tr>
<td>Total:</td>
<td>₹ 46500</td>
</tr>
<tr style="position: relative;top:45px;">
<td></td>
<td><a href="../address/Address-page.html">
<button form="form1" type="submit" id="Pay">Proceed to Pay ➞</button>
</a></td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>