-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
286 lines (256 loc) · 18.8 KB
/
index.html
File metadata and controls
286 lines (256 loc) · 18.8 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>justinhasda</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
</head>
<body>
<div class="mainContainer">
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top">
<div class="container">
<a class="navbar-brand" href="index.html">Justin Hasda</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="innerContainer">
<div class="container my-5">
<div class="row">
<!-- left side for profile -->
<div class="col-lg-3 col-md-12 col-sm-12 order-2 order-lg-1">
<div class="profileSection">
<div class="card mx-auto p-4 shadow mb-2 leftCard">
<img src="assets/images/justin.png" class="rounded-circle mx-auto mb-3" alt="Profile" width="100" height="100">
<h2 class="card-title text-center mb-1">Justin Hasda</h2>
<p class="text-muted text-center mb-3">Frontend Designer & Django Learner. Passionate about building real-world web solutions.</p>
<div class="d-flex justify-content-center gap-3 fs-5">
<a href="https://facebook.com" target="_blank" class="text-secondary"><i class="bi bi-facebook"></i></a>
<a href="https://linkedin.com" target="_blank" class="text-secondary"><i class="bi bi-linkedin"></i></a>
<a href="https://twitter.com" target="_blank" class="text-secondary"><i class="bi bi-twitter"></i></a>
<a href="https://twitter.com" target="_blank" class="text-secondary"><i class="bi bi-instagram"></i></a>
</div>
<hr>
<div class="recentBlog">
<h4 class="card-title">Recent Blog</h4>
<ul class="list-unstyled">
<li><a href="#" class="text-decoration-none text-muted d-block py-1"><strong># Recent Blog Lorem ipsum dolor sit amet.</strong></a></li>
<li><a href="#" class="text-decoration-none text-muted d-block py-1"><strong># Recent Blog Lorem ipsum dolor sit amet.</strong></a></li>
<li><a href="#" class="text-decoration-none text-muted d-block py-1"><strong># Recent Blog Lorem ipsum dolor sit amet.</strong></a></li>
</ul>
</div>
<hr>
<footer">
<div class="text-center">
<p class="mb-1 text-muted">© 2025 Justin Hasda.</p>
</div>
</footer>
</div>
</div>
</div>
<!-- right side for blog -->
<div class="col-lg-9 col-md-12 col-sm-12 order-1 order-lg-2">
<div class="blogsection">
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm p-4">
<div class="row g-0">
<!-- Left: Thumbnail -->
<div class="col-md-4">
<img src="assets/images/justinhasdablog.jpg" class="img-fluid rounded-start"alt="Blog Thumbnail" />
</div>
<!-- Right: Content -->
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Fun Front-End Development Tricks for Beginners</h5>
<small class="text-muted">June 14, 2025 • 5 min read</small>
<div class="my-2">
<span class="badge bg-primary me-1">#frontend</span>
<span class="badge bg-secondary me-1">#html</span>
<span class="badge bg-success">#css</span>
<span class="badge bg-dark">#webdev</span>
</div>
<p class="card-text">
Front-end development is all about building the parts of websites and apps that users see and interact with. If you’re just starting out, here are some cool tricks and tips that will make your learning journey easier and more enjoyable!
<a href="blogContent.html">Read More...</a>
</p>
</div>
</div>
</div>
</div>
</div>
<a href="#" class="btn btn-dark mb-4">More Posts <i class="bi bi-arrow-right ps-2"></i><i class="fa-solid fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</div>
<script src="assets/js/script.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>