-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.html
31 lines (27 loc) · 1.26 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Rose Day</title>
<link rel="stylesheet" href="./card.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<div class="main">
<div class="card">
<div class="message">
<h3 class="sp-name">Dear, <span id="spName"></span></h3>
<p id="chosenQuote">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sunt ratione atque nihil enim? Autem expedita perferendis repellendus totam doloribus. Tenetur adipisci sed quas fugit id, maiores est impedit optio et.</p>
<h3 class="fp-name">Yours, <span id="fpName"></span></h3>
</div>
<img src="./assets/rose.png" class="rose" alt="rose">
</div>
<div class="copyright-container">
<h3 class="copyright">Created with 🤍 by <a href="https://instagram.com/zxdhiru">Dhiru</a></h3>
</div>
</div>
<script src="./card.js"></script>
<script src="./app.js" type="module"></script>
</body>
</html>