forked from codingstella/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.67 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
<!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>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">4063 2020 3070 5000</h5>
<h5 class="name">Coding Stella</h5>
</div>
<div class="valid-date">
<h6>Valid Thru</h6>
<h5>08/27</h5>
</div>
</div>
</div>
<div class="card back-face">
<h6>
For customer service call +977 4343 4693 or email at
mastercard@gmail.com
</h6>
<span class="magnetic-strip"></span>
<div class="signature"><i>005</i></div>
<h5>
Lorem ipsum dolor sit amet, 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>