-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (58 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<style>
.bg
{
background-image: url(https://github.com/Jenin82/TeachersDay/blob/main/5.jpg?raw=true);
filter: blur(8px);
-webkit-filter: blur(8px);
}
h2
{
color: black;
background-color: white;
font-size: 25px;
font-family: 'Courier New', Courier, monospace;
text-align: center;
}
h1
{
color: green;
background-color: white;
font-size: 50px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
text-align: center;
}
img
{
text-align: center;
height: 300px;
width: 500px;
}
p{
font-size: 20;
font-style: italic;
font-weight: bold;
text-align: center;
color: red;
}
.text{
position: absolute;
}
</style>
<title>Teacher's Day</title>
</head>
<body>
<div class="bg"></div>
<div class="text"> <h2>SEPTEMBER 5TH</h2>
<h1>TEACHER'S DAY</h1>
<center><img src="https://github.com/Jenin82/TeachersDay/blob/main/5.jpg?raw=true" /> </center>
<br/>
<p>You have taught me a vast number of invaluable things. Through obstacles and difficult days, you have kept a cool head and a warm heart.
Meeting a person like you is rare, let alone having the privilege of them being your teacher! Thank you, truly and sincerely.</p>
</div>
</body>
</html>
<!-- Abhijith Pratheesh S3 CSE -->