-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QR Banking</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>My QR Banking Codes</h1>
<p>Give some money for a starving developer:</p>
</header>
<div class="qr-gallery">
<div class="qr-item">
<img src="images/qr-momo.jpg" alt="QR Code 1" />
<p>momo</p>
</div>
<div class="qr-item">
<img src="images/qr-bidv.jpg" alt="QR Code 2" />
<p>BIDV</p>
</div>
<div class="qr-item">
<img src="images/qr-shinhan.png" alt="QR Code 3" />
<p>ShinHan</p>
</div>
<div class="qr-item">
<img src="images/qr-vcb.jpg" alt="QR Code 4" />
<p>Vietcom Bank</p>
</div>
</div>
<footer>
<p>Thank for your helps!</p>
</footer>
</body>
</html>