-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (48 loc) · 2.06 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SterileCalc</title>
</head>
<body>
<header>
<nav>
<div class="row">
<div class="left">
<ul>
<li><a href="index.html">💉SterileCalc</a></li>
</ul>
</div>
<div class="right">
<ul>
<li><a href="sterileprocurementresources.html">Other Resources</a></li>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/brittanyvl/SterileCalc" target="_blank">Source Code</a></li>
<li><button onclick="disclaimer()">Read Me</button></li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="row">
<div class="column"><img src="savingsimage.jpg"></div>
<div class="column">
<h1>About 💉SterileCalc</h2>
<p>👋🏻 Hi, I'm <a href="https://www.linkedin.com/in/brittanycampos/" target="_blank"
class="decoratelink">Brittany</a>.
</p>
<p>💉SterileCalc was created as a student project to demonstrate and deepen my understanding of
HTML, CSS, JavaScript. This website was built from scratch using these technologies, and is
hosted by Github pages, deployed through Github.</p>
<p>The calculators created were inspired by the most popular questions found in medical spa and IV
therapy communities around evaluating and benchmarking sterile drug products.</p>
</div>
</div>
</main>
<script src="sterilecalc.js"></script>
<script src="https://kit.fontawesome.com/e642d62004.js" crossorigin="anonymous"></script>
</body>
</html>