-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (135 loc) · 5.97 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edublog</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<script src="script.js"></script>
</head>
<body background="back.webp">
<header>
<nav class="navbar">
<h2 class="logo"><a href="#">Edublog</a></h2>
<input type="checkbox" id="menu-toggler">
<label for="menu-toggler" id="hamburger-btn">
</label>
<ul class="all-links">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="homepage" id="home">
<div class="content">
<div class="text">
<h1>Welcome to EduBlog!</h1>
<p>Your go-to resource for insights and updates on Technology,
Health, and Finance.
<br> Here, we aim to empower you with knowledge
that helps you stay informed and make smart decisions in today's
fast-paced world.</p>
</div>
<a href="#services">Our Services</a>
</div>
</section>
<section class="services" id="services">
<h2>Explore our website</h2>
<ul class="cards">
<li class="card">
<img src="tech.jpeg" alt="img">
<h3>Technology</h3>
<p>Innovations Shaping the Future Explore the latest trends,
innovations, and advancements in technology. From artificial
intelligence to the newest gadgets, we cover it all to keep
you at the cutting edge of tech.<br><br>
<b>Featured Articles:</b><br>
The Rise of Artificial Intelligence: How AI is transforming industries.<br>
5G Networks: What you need to know about the next-gen connectivity.<br>
Cybersecurity Tips: Protecting your data in the digital age.<br>
Latest Tech News: Stay updated with our curated tech news to
never miss out on important updates and breakthroughs..</p>
</li>
<li class="card">
<img src="health.png" alt="img">
<h3>Health</h3>
<p>Health and Wellness for Everyone Your health is your wealth. Discover articles and tips on maintaining a healthy lifestyle, managing stress, and staying fit. We provide scientifically backed information to support your well-being.
<br><br>
<b>Featured Topics:</b>
<br>
Nutrition Basics: What to eat for a balanced diet.
<br>
Mental Health Matters: Strategies to cope with stress and anxiety.
<br>
Exercise Routines: Best workouts for different fitness levels.
<br>
Health Tips: Practical health tips to incorporate into your daily routine for
a healthier life.</p>
</li>
<li class="card">
<img src="finance.png" alt="img">
<h3>Finance</h3>
<p>Smart Financial Management Navigate the complexities of personal and professional finance with ease. From saving and investing to understanding market trends, our articles are designed to help you secure your financial future.
Featured Insights:
Budgeting 101: How to create and stick to a budget.
Investing Basics: A beginner's guide to the stock market.
Financial Planning: Preparing for retirement and beyond.
Finance News: Stay informed with the latest financial news and market updates.</p>
</li>
</ul>
</section>
<section class="about" id="about">
<h2>About Us</h2>
<p>Who We Are At EduBlog, we are passionate about spreading knowledge
and empowering our readers. Our team of expert writers and industry
professionals bring you well-researched articles and insights to
help you stay ahead in Technology, Health, and Finance.
</p>
<div class="row mission-vision">
<h3>Our Mission</h3>
<p> To provide high-quality, accessible information that
enriches lives and supports informed decision-making.</p>
</div>
<div class="row team" style="margin-left: 85%;">
<h3>Our Team</h3>
<ul style="margin-left: -10%;" >
<li>Dhirendra kumar prajapati - Founder and CEO</li>
</ul>
</div>
</section>
<section class="contact" id="contact">
<h2>Contact Us</h2>
<p>Reach out to us for any inquiries or feedback.</p>
<div class="row">
<div class="col information">
<div class="contact-details">
<p><i class="fas fa-map-marker-alt"></i> KIET group of institutions</p>
<p><i class="fas fa-envelope"></i> [email protected]</p>
<p><i class="fas fa-phone"></i> 9084362689</p>
<p><i class="fas fa-globe"></i> www.Edublog.in</p>
</div>
</div>
<div class="col form">
<form>
<input type="text" placeholder="Name*" required>
<input type="email" placeholder="Email*" required>
<textarea placeholder="Message*" required></textarea>
<button id="submit" type="submit">Send Message</button>
</form>
</div>
</div>
</section>
<footer>
<div>
<span>Copyright © 2024 All Rights Reserved</span>
<span class="link">
<a href="#">Home</a>
<a href="#contact">Contact</a>
</span>
</div>
</footer>
</body>
</html>