-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (53 loc) · 1.77 KB
/
index.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
<!DOCTYPE html>
<header>
</header>
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="jumbotron">
<h1 class="display-4">Welcome to Christy's Compounding World!</h1>
<p class="lead">Please select which calculation tool you want to use</p>
<hr class="my-4">
<p>Happy compounding~~</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="html/hormone.html" role="button">Hormone</a>
<a class="btn btn-success btn-lg" href="html/pedmed.html" role="button">Pediatric Drug</a>
<a class="btn btn-info btn-lg" href="html/atropine.html" role="button">Atropine Eyedrop Regular</a>
<a class="btn btn-warning btn-lg" href="html/atropinetwo.html" role="button">Atropine Eyedrop Forte</a>
</p>
</div>
<div class="extra-info">
<a class ="btn-warning btn-lg" href ="html/tmpsmx.html" role="button"> TMP-SMX </a>
</div>
<style>
.extra-info {text-align: center;}
</style>
</body>
<style>
header {
font-size: 20px;
margin: auto;
padding: 30px;
}
.a {
font-size: larger;
font-weight: bold;
color: blue;
padding: 50px;
margin: 25px 50px 75px 100px
}
.b {font-size: larger;
font-weight: bold;
color: green;
padding: 50px;
}
.c {
font-size: larger;
font-weight: bold;
color: rgb(158, 86, 221);
padding: 50px;
}
</style>
</html>