-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathblog.html
171 lines (147 loc) · 5.25 KB
/
blog.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedPlant - The Green World</title>
<meta name="description" content="Explore the significance of green trees and vegetation">
<meta name="keywords" content="MedPlant, Green Trees, Vegetation">
<meta name="theme-color" content="#71bf45">
<meta property="og:title" content="MedPlant - The Green World">
<meta property="og:description" content="Explore the significance of green trees and vegetation">
<meta property="og:image" content="https://example.com/your-image.jpg">
<meta property="og:type" content="website">
<meta property="og:url" content="https://yourwebsite.com">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap">
<style>
/* Add custom CSS styles here to enhance the look of your page */
body {
font-family: 'Open Sans', sans-serif;
background-color: #071e3d;
color: #fff;
margin: 0;
padding: 0;
}
header {
text-align: center;
padding: 2rem 0;
}
h1 {
font-size: 3rem;
margin: 0;
}
/* Style your sections creatively */
section {
background-color: rgba(255, 255, 255, 0.1);
padding: 2rem;
margin: 2rem 0;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
color: #333;
position: relative;
}
h2 {
font-size: 2.5rem;
color: #71bf45;
}
p {
font-size: 1.5rem;
line-height: 1.6;
}
/* Style your images creatively */
.pic {
width: 100vw;
height: 100vh;
object-fit: cover;
border-radius: 0;
transition: transform 0.3s ease-in-out;
}
.pic:hover {
transform: scale(1.05);
}
/* Creative navigation bar */
nav {
background-color: rgba(255, 255, 255, 0.1);
padding: 1rem;
position: sticky;
top: 0;
z-index: 999;
}
ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
}
li {
margin: 0 1rem;
}
a {
text-decoration: none;
color: #fff;
font-size: 1.5rem;
transition: color 0.3s ease-in-out;
}
a:hover {
color: #71bf45;
}
/* Add some creative animations */
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.animated {
animation: fadeIn 1s ease-in-out;
}
/* Create a decorative plant element */
.plant {
position: absolute;
top: -50px;
right: -50px;
opacity: 0.7;
transform: rotate(45deg);
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="#section1">Introduction</a></li>
<li><a href="#section2">Oxygen</a></li>
<li><a href="#section3">Biodiversity</a></li>
<li><a href="#section4">Climate Change</a></li>
<li><a href="#section5">Mental Health</a></li>
<li><a href="#section6">Sustainability</a></li>
<li><a href="#section7">Conclusion</a></li>
</ul>
</nav>
<header>
<h1>MedPlant - The Green World</h1>
</header>
<main>
<section id="section1" class="animated">
<img src="https://example.com/plant.png" alt="Decorative Plant" class="plant">
<img src="https://images.unsplash.com/photo-1593412369977-d3b53ca6b53a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Full Screen Image" class="pic">
<h2>Introduction</h2>
<p>
In the bustling urban landscape, where concrete jungles prevail, it is easy to overlook the importance of green trees and vegetation. However, beneath the surface lies a world of ecological marvels, offering invaluable benefits to both nature and humankind. In this blog, we will delve into the significance of these emerald wonders, showcasing their importance through captivating images of plants and plant-based themes.
</p>
</section>
<!-- Add more styled sections for each topic -->
<!-- Include interactive elements like buttons -->
<section class="section8 animated">
<h2>Explore More</h2>
<p>Ready to dive deeper into the world of green trees and vegetation?</p>
<a href="#section1" class="btn">Start Reading</a>
</section>
</main>
</body>
</html>