-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
117 lines (103 loc) · 6.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!--ensure browser uses latest rendering mode-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--enables scaling for mobile devices-->
<title>Cath Club</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="CSS/navbar.css">
<link rel="stylesheet" href="CSS/blog.css">
</head>
<body>
<section id="nav-bar">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#"><img src="Images/cathclub.png"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#top-navbar" aria-controls="top-navbar"> <!-- ARIA: Accessible Rich Internet Applications, aria-controls points to the id of another element on the page, typically the one that will be shown -->
<i class="fa-solid fa-bars-staggered"></i>
</button>
<div class="offcanvas offcanvas-end" tabindex="-1" id="top-navbar" aria-labelledby="top-navbarLabel">
<!-- Navigation Bar Content-->
<!--create button to toggle/exit the offcanvas, with div element set to flex-->
<button class="navbar-toggler border-0" type="button" data-bs-toggle="offcanvas" data-bs-target="#top-navbar" aria-controls="top-navbar">
<div class="d-flex justify-content-between p-3">
<a class="navbar-brand" href="#"><img src="Images/cathclub.png"></a>
<i class="fa-solid fa-xmark"></i>
</div>
</button>
<ul class="navbar-nav ms-lg-auto p-4 p-lg-0">
<li class="nav-item px-3 px-lg-0 py-lg-4">
<a class="nav-link" href="home_page.html">Home</a>
</li>
<li class="nav-item px-3 px-lg-0 py-1 py-lg-4 dropdown">
<a class="nav-link dropdown-toggle" href="anatomy.html" id="navbarDropdown" role="button" data-bs-hover="dropdown" aria-expanded="false""> <!--change data-bs-toggle to hover to make dropdown item clickable-->
Anatomy
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="anatomy.html#LCA">LCA</a></li>
<li><a class="dropdown-item" href="anatomy.html#RCA">RCA</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="anatomy.html#cardiac_conduction_sys">Cardiac Conduction System</a></li>
</ul>
</li>
<li class="nav-item px-3 px-lg-0 py-1 py-lg-4 dropdown">
<a class="nav-link dropdown-toggle" href="equipment.html" id="navbarDropdownEquipment" role="button" data-bs-hover="dropdown" aria-expanded="false""> <!--change data-bs-toggle to hover to make dropdown item clickable-->
Equipment
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="equipment.html#siemens">Siemens/Syngovia Computer</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="equipment.html#table">Control Module</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="equipment.html#injection">Injection</a></li>
<li><a class="dropdown-item" href="equipment.html#sony-screen">Sony Screen</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="equipment.html#troubleshooting">Troubleshooting</a></li>
</ul>
</li>
<li class="nav-item px-3 px-lg-0 py-1 py-lg-4 dropdown">
<a class="nav-link dropdown-toggle" href="procedures.html" id="navbarDropdownProcedures" role="button" data-bs-hover="dropdown" aria-expanded="false""> <!--change data-bs-toggle to hover to make dropdown item clickable-->
Procedures
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="procedures.html#LHC">LHC</a></li>
<li><a class="dropdown-item" href="procedures.html#CRM">CRM</a></li>
<li><a class="dropdown-item" href="procedures.html#Structural">Structural</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="procedures.html#PICC">PICC Lines</a></li>
</ul>
</li>
<li class="nav-item px-3 px-lg-0 py-1 py-lg-4">
<a class="nav-link" href="dictionary.html">Dictionary</a>
</li>
<li class="nav-item px-3 px-lg-0 py-1 py-lg-4">
<a class="nav-link" href="blog.html">Blog</a>
</li>
</ul> <!--autoalign right when screen is large-->
</div>
</nav>
</section>
<!-----------------------------------------------demo-------------------------------------------->
<section id="overview" class="py-5">
<div class="container px-4">
<div class="row">
<div class="col-md-12">
<h1 class="py-2 text-left fw-bold">My Journey So Far</h1>
</div>
<div class="col-md-12 px-lg-0">
<div class="overview-description mt-4 text-center">
<ul style="list-style-position: inside; padding-left: 5; text-align: left;">
<li style="margin-bottom: 0.5rem;">Check specific linked style sheets</li>
<li style="margin-bottom: 0.5rem;">Check appropriate scripts are linked at bottom of body</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="homepage.js"></script>
</body>