-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
662 lines (650 loc) · 30.2 KB
/
index.html
File metadata and controls
662 lines (650 loc) · 30.2 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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Michael Richards - Personal Resume</title>
<meta name="description" content="Professional CV for Mr. Richards" />
<meta name="keywords" content="" />
<meta name="author" content="MacRichards" />
<link rel="shortcut icon" href="assets/images/favicon.jpg" />
<!-- Vender CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<link href="assets/vendor/fontawesome/css/all.css" rel="stylesheet" />
<script src="https://kit.fontawesome.com/9c6ad30628.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body>
<!-- START Navbar -->
<nav class="navbar navbar-expand-lg fixed-top shadow-sm">
<div class="container">
<!-- Logo -->
<a class="navbar-brand logo" href="index.html">
<img src="assets/images/favicon.jpg" class="img-fluid" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa-solid fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item" label="About">
<a href="#About" class="nav-link">About</a>
</li>
<li class="nav-item" label="Education">
<a href="#Education" class="nav-link">Education</a>
</li>
<li class="nav-item" label="Experience">
<a href="#Experience" class="nav-link">Experience</a>
</li>
<li class="nav-item" label="Publications">
<a href="#Publications" class="nav-link">Publications</a>
</li>
<li class="nav-item" label="Contact">
<a href="#Contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- END Navbar -->
<!-- START About -->
<section class="section" id="About">
<div class="container">
<div class="row">
<div class="col-lg-4 justify-content-center">
<img src="assets/images/about.jpg" class="img-fluid mx-auto d-block mb-4" />
<div class="text-center">
<h3>Michael Richards</h3>
<p class="text-muted">Juris Doctor Candidate</p>
<p class="text-muted">
<a href="https://www.wcl.american.edu/" target="_blank" class="link">Washington College of Law</a>
</p>
</div>
<ul class="social list-unstyled text-center">
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/macrichards/"><i class="fa-brands fa-linkedin-in"
aria-hidden="true"></i></a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/macrichards/"><i class="fa-brands fa-instagram"
aria-hidden="true"></i></a>
</li>
</ul>
</div>
<div class="col-lg-8">
<div class="mx-auto section-main-title text-center">
<h2>About Me</h2>
<div class="main-title-border">
<i class="fa-solid fa-asterisk"></i>
</div>
</div>
<p class="mx-auto">
I am a law student at American University Washington College of Law, driven by a commitment
to justice, accountability, and human rights. My academic and professional work centers on
international criminal law, international humanitarian law, and domestic criminal law, with
the goal of pursuing a career in public service as a prosecutor and advocate.
</p>
<p class="mx-auto">
My legal experience spans international and domestic practice. I am currently an extern with
the Special Prosecution Division of the Montgomery County State's Attorney's Office, where I
work on serious felony matters, including trial preparation, evidence analysis, and
prosecutorial strategy. This summer, I will serve as a Rule 9 Legal Intern with the
Snohomish County Prosecutor's Office, further developing practical experience in criminal
prosecution.
</p>
<p class="mx-auto">
My research examines the intersection of law, armed conflict, and corporate responsibility.
I have published on corporate accountability for war crimes in the Democratic Republic of
the Congo in the Human Rights Brief and contributed to the Asser Institute's
International Crimes Database. This work reflects my commitment to ensuring that both
individuals and institutions are held accountable for violations of international law.
</p>
<p class="mx-auto">
In addition to research, I have gained practical experience in peacebuilding and
international legal processes. With the Public International Law & Policy Group (PILPG), I
supported peace negotiations through legal research and drafting memoranda, gaining insight
into how law operates in conflict resolution and post-conflict transitions. I also studied
international criminal law and counterterrorism at the Asser Institute in The Hague,
deepening my understanding of global justice in practice.
</p>
<p class="mx-auto">
Before law school, I worked in information technology as a project manager and IT assistant,
leading web development initiatives and supporting infrastructure projects involving
wireless networking and A/V systems. This technical background strengthened my ability to
manage complex projects, collaborate across disciplines, and adapt quickly in high-pressure
environments.
</p>
<p class="mx-auto">
Whether through courtroom advocacy, public service, or legal scholarship, I seek to promote
accountability and uphold the rule of law at both the domestic and international levels.
</p>
<h3 class="mx-auto section-sub-title">Interests</h3>
<div class="row mt-3">
<div class="col-lg-6">
<div class="skill-item mb-3 d-flex align-items-center">
<i class="fa-solid fa-hands-bound"></i>
<p>International Criminal law</p>
</div>
<div class="skill-item mb-3 d-flex align-items-center">
<i class="fa-solid fa-people-group"></i>
<p>Human Rights Law in Armed Conflict</p>
</div>
<div class="skill-item mb-3 d-flex align-items-center">
<i class="fa-solid fa-landmark"></i>
<p>Corporate Responsibility & Business and Human Rights</p>
</div>
</div>
<div class="col-lg-6">
<div class="skill-item mb-3 d-flex align-items-center">
<i class="fa-solid fa-person-rifle"></i>
<p>International Humanitarian Law</p>
</div>
<div class="skill-item mb-3 d-flex align-items-center">
<i class="fa-solid fa-building-un"></i>
<p>Public International Law & International Institutions</p>
</div>
<div class="skill-item mb-3 d-flex align-items-center">
<i class="fa-solid fa-handcuffs"></i>
<p>Comparative Criminal Law and Prosecution</p>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-12">
<div class="text-center">
<a class="btn-custom" href="Michael_Richards_Resume.pdf">Resume</a>
</div>
</div>
</div>
</div>
</section>
<!-- END About -->
<!-- START Education -->
<section class="section bg-dark" id="Education">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="mx-auto section-main-title text-center">
<h2>My Education</h2>
<div class="main-title-border">
<i class="fa-solid fa-asterisk"></i>
</div>
</div>
</div>
<div class="col-lg-8">
<div class="edu_exp_list">
<div class="edu_exp_list_item">
<div class="row">
<div class="col-12">
<h4>Juris Doctor</h4>
<i class="font-weight-bold">American University Washington College of Law</i>
<p class="cv_desc text-muted mb-0">
2024 – 2027
</p>
<p class="cv_desc mb-0">
<b>Activities</b>: Human Rights Brief,
<i>Senior Columns Editor</i>
| War Crimes Research Office,
<i>Blog Writer</i>
</p>
<p class="cv_desc mb-0"><b>Study Abroad</b>: T.M.C.
Asser Institute, The Hague, NL, June 2025
</p>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>Bachelors of Arts in Political Science</h4>
<i class="font-weight-bold">University of Washington</i>
<p class="cv_desc text-muted mb-0">
2020 – 2023
</p>
<p class="cv_desc mb-0">
Minor in Law, Societies, and Justice
</p>
<p class="cv_desc mb-0">
<b>Honors</b>: Dean's List
</p>
<p class="cv_desc mb-0">
<b>Activities</b>: Phi Alpha Delta Pre-Law Fraternity,
<i>Social Committee Member</i>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END Education -->
<!-- START Experience -->
<section class="section" id="Experience">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="mx-auto section-main-title text-center">
<h2>My Experiences</h2>
<div class="main-title-border">
<i class="fa-solid fa-asterisk"></i>
</div>
</div>
</div>
<div class="col-lg-8">
<div class="edu_exp_list">
<div class="edu_exp_list_item">
<div class="row">
<div class="col-12">
<h4>Legal Extern</h4>
<i class="font-weight-bold">Montgomery County State's Attorney's Office</i>
<p class="cv_desc text-muted mb-0">January 2026 – Present</p>
<ul class="cv_desc mb-0">
<li>
Conducted legal research and drafted memoranda on
evidentiary and procedural issues for homicide and
violent felony prosecutions.
</li>
<li>
Assisted prosecutors in preparing for trial by
organizing discovery materials, witness lists, and
exhibits.
</li>
<li>
Reviewed police reports, forensic evidence, and
witness statements to support case preparation.
</li>
<li>
Observed and analyzed major felony trials, including
jury selection, opening statements, and
cross-examinations.
</li>
</ul>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>Legal Research Associate</h4>
<i class="font-weight-bold">Lawyering Peace Program</i>
<p class="cv_desc text-muted mb-0">August 2025 – December 2025</p>
<ul class="cv_desc mb-0">
<li>
Drafted client-ready memorandum proposing language and strategies for designing security guarantees within a peace agreement for Ukraine for the Public International Law and Policy Group (PILPG).
</li>
<li>
Enhanced negotiation and advocacy skills through regular simulation exercises modeled on international peace negotiations.
</li>
<li>
Presented research findings to colleagues and supervisors through a formal multi-media presentation.
</li>
</ul>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>Case Researcher</h4>
<i class="font-weight-bold">T.M.C. Asser Institute</i>
<p class="cv_desc text-muted mb-0">June 2025 – February 2026</p>
<ul class="cv_desc mb-0">
<li>
Researched and summarized cases involving war crimes,
crimes against humanity, and genocide adjudicated by
domestic and international courts, for publication on
the International Crimes Database.
</li>
<li>
Conducted legal research on emerging jurisprudence in
international humanitarian law, counterterrorism, and
international human rights law.
</li>
</ul>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>Research Assistant, Professor Rebecca Hamilton</h4>
<i class="font-weight-bold">American University Washington College of Law</i>
<p class="cv_desc text-muted mb-0">June 2025 – August 2025</p>
<ul class="cv_desc mb-0">
<li>
Conducted legal research into issues surrounding
international humanitarian law and domestic
immigration law.
</li>
<li>
Drafted summaries and memoranda with a team of student
researchers for academic syllabus supplements.
</li>
</ul>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>Legal Assistant</h4>
<i class="font-weight-bold">Suttell & Hammer</i>
<p class="cv_desc text-muted mb-0">October 2023 – July 2024</p>
<ul class="cv_desc mb-0">
<li>
Drafted and prepared motions to amend, judgment
renewals, and judgment domestications in support of
high-volume creditors' rights litigation.
</li>
<li>
Entered judgment data with accuracy and filed motions
electronically in compliance with court rules and
procedural deadlines.
</li>
<li>
Liaised with court clerks to manage hearing schedules,
track deadlines, and ensure timely case progression.
</li>
</ul>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>Learning Spaces IT Student Assistant</h4>
<i class="font-weight-bold">University of Washington</i>
<p class="cv_desc text-muted mb-0">
October 2021 – March 2023
</p>
<ul class="cv_desc mb-0">
<li>
Responded to queries on phone, via email, or through
IT ticketing system.
</li>
<li>
Set up and maintained video matrix servers and other
IT infrastructure.
</li>
<li>
Worked with faculty and staff to resolve network
issues.
</li>
</ul>
</div>
</div>
</div>
<div class="edu_exp_list_item mt-4">
<div class="row">
<div class="col-12">
<h4>National Key Volunteer</h4>
<i class="font-weight-bold">Scouting America</i>
<p class="cv_desc text-muted mb-0">
January 2019 – December 2024
</p>
<ul class="cv_desc mb-0">
<li>
Led the planning and execution of national-level
technology projects under the direction of the
National Committee, supporting strategic initiatives
and digital outreach.
</li>
<li>
Maintained internal documentation and accounting
protocols to ensure operational consistency, accurate
information tracking, and procedural compliance.
</li>
<li>
Supervised and mentored a team of 6+ volunteers,
delegating responsibilities to foster skill
development and ensure timely completion of technology
initiatives.
</li>
<li>
Monitored and assessed digital platforms; reported
technical issues and escalated unresolved cases to
national leadership to ensure continuity of services.
</li>
<li>
Received the
<a href="https://oa-scouting.org/distinguished-service-award-past-recipients-2000-present#:~:text=Michael%20%22Mac%22%20Richards"
target="_blank" class="link">Distinguished Service Award</a>
(2024), the highest national honor for service to
Scouting America's Order of the Arrow, recognizing
exceptional leadership and commitment.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END Experience -->
<!-- START Publications -->
<section class="section bg-dark" id="Publications">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="mx-auto section-main-title text-center">
<h2>Publications</h2>
<div class="main-title-border">
<i class="fa-solid fa-asterisk"></i>
</div>
</div>
</div>
<div class="col-lg-8">
<div class="card shadow-sm">
<div class="pub_tag pub_article d-flex align-items-center justify-content-center">
<span>Article</span>
</div>
<div class="pub_body">
<a class="pub_title_article h5" href="https://digitalcommons.wcl.american.edu/hrbrief/vol29/iss1/8/" target="_blank">
Corporate Responsibility in Business Dealings with War Criminals
</a>
<div class="font-weight-bold">
<i>Human Rights Brief</i>
</div>
<p class="cv_desc mb-0">
<span class="pub_smcp">Vol. 29 No. 1</span>
<i class="pub_separator fa-solid fa-diamond"></i>
2026
<i class="pub_separator fa-solid fa-diamond"></i>
This column argues that governments can curb corporate complicity in atrocities by strengthening legal regimes governing conflict minerals and corporate accountability. Using the Democratic Republic of the Congo as a case study, it explains how multinational tech companies indirectly finance armed groups through opaque mineral supply chains, while gaps in ICC jurisdiction and weak disclosure rules shield executives and firms. Examining the UN Guiding Principles, a draft binding business and human rights treaty, and contrasting U.S. and EU approaches, the column urges enforceable due diligence, meaningful sanctions, and treaty-based oversight to align global commerce with basic human rights norms.
</p>
</div>
</div>
<div class="card shadow-sm mt-4">
<div class="pub_tag pub_blog d-flex align-items-center justify-content-center">
<span>Blog</span>
</div>
<div class="pub_body">
<a href="https://aublr.org/2025/09/a-wake-up-call-for-tech-companies-operating-abroad-doe-i-v-cisco-systems-inc/"
target="_blank" class="pub_title_blog h5">A Wake-Up Call for Tech Companies Operating Abroad:
<i>Doe I v. Cisco Systems, Inc.</i></a>
<div class="font-weight-bold">
<i>The BLR Buzz Blog</i>
</div>
<p class="cv_desc mb-0">
September 30, 2025
<i class="pub_separator fa-solid fa-diamond"></i>
This blog post argues that U.S. tech companies risk liability under the Alien Tort Statute when they design and configure products domestically for use in abuses abroad. Focusing on <i>Doe I v. Cisco</i>, it explains that the Ninth Circuit allowed claims to proceed based on allegations Cisco customized China’s “Golden Shield” from California, knowing it would help persecute Falun Gong practitioners. Unlike cases involving mere corporate presence, this decision signals that intentional, U.S.-based technical support can ground aiding-and-abetting liability, pushing companies toward robust human rights due diligence and more accountable innovation in global surveillance and supply-chain markets.
</p>
</div>
</div>
<div class="card shadow-sm mt-4">
<div class="pub_tag pub_blog d-flex align-items-center justify-content-center">
<span>Blog</span>
</div>
<div class="pub_body">
<a href="https://propertylawtoday.org/posts/2025/richards-internet-takings/" target="_blank"
class="pub_title_blog h5">Taking the Internet by Law</a>
<div class="font-weight-bold">
<i>Property Law Today</i>
</div>
<p class="cv_desc mb-0">
April 20, 2025
<i class="pub_separator fa-solid fa-diamond"></i>
This blog post argues that states can address monopoly-driven slow speeds, predatory pricing, and limited access to essential internet services by exercising eminent domain over Comcast's physical network infrastructure and opening it to competitive providers. Drawing on <i>Kelo v. City of New London</i>, the blog post contends that a well-designed, community-wide plan satisfies the Fifth Amendment's “public use” requirement and the just compensation standard. Given the internet's central role in work, education, and civic participation, public control of infrastructure advances equity and efficiency while remaining within the powers of a democratically accountable government.
</p>
</div>
</div>
<div class="card shadow-sm mt-4">
<div class="pub_tag pub_blog d-flex align-items-center justify-content-center">
<span>Blog</span>
</div>
<div class="pub_body">
<a class="pub_title_blog h5" href="https://wcrointlcrimlawupdates.wordpress.com/author/mr6982a/"
target="_blank">
International Criminal Law Updates
</a>
<div class="font-weight-bold">
<i>
War Crimes Research Office of American University
Washington College of Law
</i>
</div>
<p class="cv_desc mb-0">
February – April 2025
<i class="pub_separator fa-solid fa-diamond"></i>
Reported on developments on the International Criminal
Court's investigation into the Situation in Ukraine and
Preliminary Investigation into the Republic of Belarus.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--END Publications -->
<!-- START Contact -->
<section class="section" id="Contact">
<div class="container">
<div class="row justify-content-center">
<div class="col-12">
<div class="text-center mx-auto section-main-title">
<h2>Get In Touch</h2>
<div class="main-title-border">
<i class="fa-solid fa-asterisk"></i>
</div>
</div>
</div>
</div>
<div class="row mt-4 pt-4">
<div class="col-lg-4">
<div class="text-center mt-4" style="cursor: pointer"
onclick="window.location.assign('mailto:mac@macrichards.com')">
<div>
<i class="fa-solid fa-envelope h2"></i>
</div>
<div class="mt-2">
<p class="mb-0 font-weight-bold">Email Me At</p>
<p class="text-muted">mac@macrichards.com</p>
</div>
</div>
<div class="text-center mt-4">
<div>
<i class="fa-solid fa-location-dot h2"></i>
</div>
<div class="mt-2">
<p class="mb-0 font-weight-bold">Location</p>
<p class="text-muted">Seattle, WA<br />Washington, DC</p>
</div>
</div>
</div>
<div class="col-lg-8">
<div class="contact_form">
<form action="https://formspree.io/f/xgedowqq" method="POST">
<div class="row">
<div class="col-lg-6">
<div class="form-group mt-2">
<label for="name" class="font-weight-bold">Name </label>
<input name="name" id="name" type="text" class="form-control" placeholder="Your name..."
required="" />
</div>
</div>
<div class="col-lg-6">
<div class="form-group mt-2">
<label for="email" class="font-weight-bold">Email address</label>
<input name="email" id="email" type="email" class="form-control" placeholder="Your email..."
required />
</div>
</div>
<div class="col-12">
<div class="form-group mt-2">
<label for="subject" class="font-weight-bold">Subject</label>
<input type="text" class="form-control" name="subject" placeholder="Your Subject.." required />
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="form-group mt-2">
<label for="message" class="font-weight-bold">Message</label>
<textarea name="message" rows="4" class="form-control" placeholder="Your message..."
required></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-right">
<input type="submit" class="btn btn-custom" />
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- END Contact -->
<!-- START Footer -->
<section class="bg bg-footer">
<div class="container">
<div class="row pt-4 pb-4">
<div class="col-8">
<div class="float-left">
<p class="text-muted mb-0">
Copyright © <span id="year"></span> Michael Richards. All
Rights Reserved.
</p>
</div>
</div>
<!-- Socials -->
<div class="col-4">
<div class="float-right">
<ul class="list-inline social mb-0 d-flex align-items-center text-center">
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/macrichards/"><i class="fa-brands fa-linkedin-in"></i></a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/macrichards/"><i class="fa-brands fa-instagram"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- END Footer -->
<!-- JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.13.2/themes/smoothness/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.13.2/jquery-ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<script src="assets/js/scrollspy.min.js"></script>
<!--Custom JS-->
<script src="assets/js/custom.js"></script>
</body>
</html>