-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
171 lines (161 loc) · 5.46 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>The Wisdom Workshop</title>
<link rel="shortcut icon" href="assets/logo(half).png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Navigation -->
<nav>
<img src="assets/logo(full).png" alt="logo" />
<div class="navigation">
<ul>
<i id="menu-close" class="fa-solid fa-xmark"></i>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a class="active" href="blog.html">Blog</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<!-- <img id="menu-btn" src="assets/menu.png" alt="" /> -->
<i id="menu-btn" class="fa-solid fa-bars"></i>
</div>
</nav>
<!-- Home -->
<section id="about-home">
<h2>Blog/</h2>
</section>
<section id="blog-container">
<div class="blogs">
<div class="post">
<img src="assets/b1.jpg" alt="" />
<h3>Learn Web development in the easiest way</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel aliquam
dolorem molestiae molestias. Sed, maiores autem tempore sapiente sequi,
dolore repudiandae recusandae nostrum alias possimus explicabo odio magni
provident voluptate!
</p>
<a href="post.html">Read more</a>
</div>
<div class="post">
<img src="assets/b2.jpg" alt="" />
<h3>Learn Web development in the easiest way</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel aliquam
dolorem molestiae molestias. Sed, maiores autem tempore sapiente sequi,
dolore repudiandae recusandae nostrum alias possimus explicabo odio magni
provident voluptate!
</p>
<a href="#">Read more</a>
</div>
<div class="post">
<img src="assets/b3.jpg" alt="" />
<h3>Learn Web development in the easiest way</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel aliquam
dolorem molestiae molestias. Sed, maiores autem tempore sapiente sequi,
dolore repudiandae recusandae nostrum alias possimus explicabo odio magni
provident voluptate!
</p>
<a href="#">Read more</a>
</div>
<div class="post">
<img src="assets/b4.png" alt="" />
<h3>Learn Web development in the easiest way</h3>
<p>
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Vel aliquam
dolorem molestiae molestias. Sed, maiores autem tempore sapiente sequi,
dolore repudiandae recusandae nostrum alias possimus explicabo odio magni
provident voluptate!
</p>
<a href="#">Read more</a>
</div>
</div>
<div class="cate">
<h2>Categories</h2>
<hr />
<a href="#">Japanese Language</a>
<hr />
<a href="#">English Speaking</a>
<hr />
<a href="#">Tally</a>
<hr />
<a href="#">C language</a>
<hr />
<a href="#">Java programming</a>
<hr />
<a href="#">Web designing</a>
<hr />
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="footer-col">
<h3>Guides</h3>
<li>Researches</li>
<li>Exoertise</li>
<li>Managed website</li>
<li>marketing service</li>
</div>
<div class="footer-col">
<h3>Guides</h3>
<li>Researches</li>
<li>Exoertise</li>
<li>Managed website</li>
<li>marketing service</li>
</div>
<div class="footer-col">
<h3>Guides</h3>
<li>Researches</li>
<li>Exoertise</li>
<li>Managed website</li>
<li>marketing service</li>
</div>
<div class="footer-col">
<h3>Guides</h3>
<li>Researches</li>
<li>Exoertise</li>
<li>Managed website</li>
<li>marketing service</li>
</div>
<div class="footer-col">
<h3>Newsletter</h3>
<p>You can trust us, we only send promo offers.</p>
<div class="subscribe">
<input type="text" placeholder="Your email address" />
<a href="#" class="yellow">subscribe</a>
</div>
</div>
</footer>
<script>
// Navaigation Bar
$("#menu-btn").click(function () {
$("nav .navigation ul").addClass("active");
});
$("#menu-close").click(function () {
$("nav .navigation ul").removeClass("active");
});
</script>
</body>
</html>