forked from huyvu15/TruongMaiBirthday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
35 lines (35 loc) · 1010 Bytes
/
card.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Birthday Card</title>
<!-- Google Font-->
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<!-- Stylesheet -->
<link rel="stylesheet" href="css/style3.css" />
</head>
<body>
<a href="index.html">> CLICK IN HERE TO RETURN HOME</a>
<div class="card">
<div class="outside">
<div class="front">
<p>Happy Birthday</p>
<div class="cake">
<div class="top-layer"></div>
<div class="middle-layer"></div>
<div class="bottom-layer"></div>
<div class="candle"></div>
</div>
</div>
<div class="back"></div>
</div>
<div class="inside">
<p>Wishing you a very happy birthday filled with love and laughter</p>
<h1>🎁</h1>
</div>
</div>
</body>
</html>