-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (138 loc) · 5.51 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
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
<!DOCTYPE html>
<html>
<head>
<title>eMDB</title>
<link rel='stylesheet' type='text/css' href='index.css'>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.css">
</head>
<body>
<div class="ui fixed inverted menu" id='menu'>
<div class="ui container">
<a href="#" class="header item">
<img class="logo" src="emdb.png">
eMedical Database
</a>
<a href="#" class="item">Home</a>
</div>
</div>
<div class="ui container">
<div class='ui grid cards' id='card-container'>
<div class='whitney green centered attached card' id="stupidCard">
<img src='https://images.pexels.com/photos/432722/pexels-photo-432722.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'>
<div class='content'>
<div class='header'>
Whitney Miller
</div>
<div class="description">
Condition: Meningitis<br>
Allergies: Peanuts, Chocolate
<br>
<br>
</div>
<div class='ui labeled icon bottom attached blue button' id="stupidButton">
<i class ="bell slash icon"></i>
Mute
</div>
</div>
</div>
<div class='whitney green centered raised card' id="stupidCard">
<img src='https://images.pexels.com/photos/6110/man-holiday-people-face.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'>
<div class='content'>
<div class='header'>
Gerard Houston
</div>
<div class="description">
Condition: Arthritis<br>
Allergies: None
<br>
<br>
</div>
<div class='ui labeled icon bottom attached blue button' id="stupidButton">
<i class ="bell slash icon"></i>
Mute
</div>
</div>
</div>
<div class='whitney green centered raised card' id="stupidCard">
<img src='https://images.pexels.com/photos/881837/pexels-photo-881837.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'>
<div class='content'>
<div class='header'>
Siraj Patel
</div>
<div class="description">
Condition: Tuberculosis<br>
Allergies: Pine nuts
<br>
<br>
</div>
<div class='ui labeled icon bottom attached blue button' id="stupidButton">
<i class ="bell slash icon"></i>
Mute
</div>
</div>
</div>
<div class='whitney green centered raised card' id="stupidCard">
<img src='https://images.pexels.com/photos/762020/pexels-photo-762020.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'>
<div class='content'>
<div class='header'>
Cassandra Green
</div>
<div class="description">
Condition: Asthma<br>
Allergies: Shellfish, poison ivy
<br>
<br>
</div>
<div class='ui labeled icon bottom attached blue button' id="stupidButton">
<i class ="bell slash icon"></i>
Mute
</div>
</div>
</div>
<div class='whitney green centered raised card' id="stupidCard">
<img src='https://images.pexels.com/photos/316680/pexels-photo-316680.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'>
<div class='content'>
<div class='header'>
Carl Frankfurt
</div>
<div class="description">
Condition: Dementia<br>
Allergies: None
<br>
<br>
</div>
<div class='ui labeled icon bottom attached blue button' id="stupidButton">
<i class ="bell slash icon"></i>
Mute
</div>
</div>
</div>
<div class='whitney green centered raised card' id="stupidCard">
<img src='https://images.pexels.com/photos/1006227/pexels-photo-1006227.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940'>
<div class='content'>
<div class='header'>
Alicia Freeman
</div>
<div class="description">
Condition: Hemolytic Anemia<br>
Allergies: Penicillin
<br>
<br>
</div>
<div class='ui labeled icon bottom attached blue button' id="stupidButton">
<i class ="bell slash icon"></i>
Mute
</div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.1.1/socket.io.js"></script>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.1/semantic.min.js"></script>
<script src="index.js"></script>
</body>
</html>