-
Notifications
You must be signed in to change notification settings - Fork 0
/
birthday.html
71 lines (63 loc) · 1.97 KB
/
birthday.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HAPPY BIRTHDAY</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@300&display=swap" rel="stylesheet">
</head>
<style>
body{
background-color:black;
/*background-repeat:no-repeat;
background-size:cover;*/
color:white;
font-family: 'Sansita Swashed', cursive;
}
header{
color:white;
text-align:center;
font-family: 'Sansita Swashed', cursive;
}
header::before{
content:"";
background:black url('https://source.unsplash.com/1600x900/?stars') no-repeat center center/cover;
position: absolute;
top:0;
left:0;
opacity:0.7;
width:100%;
height:100%;
z-index:-1;
}
.first{
font-size: 2.8rem;
}
p{
font-size:1.2rem;
text-align:center;
}
</style>
<header>
<div>
<h1 class="first">Happy Birthday Nirmal :)</h1>
<hr>
</div>
</header>
<body>
<div class="second">
<p> I wish you many many happy returns of your birthday, Nirmal.</p>
<p>I wish that you continue to love life and never stop dreaming.</p>
<p> May positivity, wisdom and happiness surround you, not only on your special day, but always</p>
<p> May you continue tp fill others life with positivity as you always do :)</p>
<p>May people keep asking for your suggestions,as you know, your suggestions are worth to be asked.</p>
<p>I hope you become a great scientist, and I know you will :)))))))</p>
<p>And thanks for helping me when I was so much helpless, so much demotivated; you literally helped me then :)</p>
<p> Would never forget that:)))))))</p>
<p>Stay positive; Stay motivated</p>
<p>Stay original, as a few people are original these days :)</p>
</div>
</body>
</html>