-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (69 loc) · 3.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My new site</title>
<style>
body {
background-color: teal;
text-decoration-color:white;
}
header {
position: relative;
font-size: 25px;
}
nav {
display: flex;
justify-content: center;
}
nav:hover {
background-color: white;
}
.main {
margin: auto;
padding: 10px;
}
</style>
</head>
<body>
<header><strong>The Little Flower School</strong></header>
<nav>
<a href="#">Home</a>
<a href="#">Classes</a>
<a href="#">Photos</a>
<a href="#">Contact Us</a>
<a href="#">News Updates</a>
</nav>
<section class="main">
<main>
<p>Every school is special in its own way and the same is with my school as well. It is a place where people
from different backgrounds and temperaments come together with the purpose to learn. It offers magic in
the form of experiments in laboratories, sports in the field, creativity in the art room and more.
Schools are a place where we get to make friends, learn new things and grow every day. In fact, it is so
hard to imagine a world without schools. They are the first place where we learn about life and many
other things. Similarly, my school plays the same role in my life.</p>
</main>
</section>
<article class="para">
<p>
It would be only fit to call my school my second home. After all, it is the place where I spend most of my
time after my home. Not only that, the atmosphere in my school is so comfortable that it makes me feel at
home.
I have always loved attending school and never miss out on an opportunity to do so. Further, it is my second
home also because I have my friends here who are nothing less than family to me. Thus, they make my school
life easier and full of joy. It is truly a blessing to have them in my life.
Most importantly, my school is my second home because it teaches me a lot of things each day. It is a safe
space that allows me to grow every day and reach greater heights. As you all know, we have our parents and
older siblings at home who protect us at all times.
Similarly, at my second home which is my school, I have my teachers and seniors. They make sure I reach my
full potential and encourage me to do the right thing always.
Therefore, I will forever be grateful to my school for being a pillar of strength in my life. Everything
that I learn here stays in my mind and heart forever. One day I will have to bid farewell to these beautiful
red walls and inspiring teachers, but it won't change anything. It is so because my school is a part of who
I am and it'll always remain the same for my entire life.
</p>
</article>
<footer>Copyright. All rights reserved.</footer>
</body>
</html>