-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.68 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<!-- Coding By CodingNepal - codingnepalweb.com -->
<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>Flipping Card UI Design</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section>
<div class="container">
<div class="card front-face">
<header>
<span class="logo">
<!--<img src="images/logo.png" alt="" />-->
<h5>Master Card</h5>
</span>
<!--<img src="images/chip.png" alt="" class="chip" />-->
</header>
<div class="card-details">
<div class="name-number">
<h6>Card Number</h6>
<h5 class="number">8050 2030 3020 5040</h5>
<h5 class="name">Sagar Kori</h5>
</div>
<div class="valid-date">
<h6>Valid Thru</h6>
<h5>05/28</h5>
</div>
</div>
</div>
<div class="card back-face">
<h6>
For customer service call +977 4343 3433 or email at
</h6>
<span class="magnetic-strip"></span>
<div class="signature"><i>005</i></div>
<h5>
Lorem ipsum dolor sit , consectetur adipisicing elit. Officia
maiores sed doloremque nesciunt neque beatae voluptatibus doloribus.
Libero et quis magni magnam nihil temporibus? Facere consectetur
dolore reiciendis et veniam.
</h5>
</div>
</div>
</section>
</body>
</html>