-
Notifications
You must be signed in to change notification settings - Fork 0
/
healthOne.html
42 lines (35 loc) · 1.47 KB
/
healthOne.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<title>Samokan Health Application</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,700" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="header pr-3">
<iframe src="header.html"></iframe>
</div>
<div class="container input">
<form action="data.html" method="get">
<div class="form-group">
<label for="dr">Drug: (Ex - Abilify, Baby Aspirin, etc.)</label>
<input type="text" class="form-control" id="dr" name="drug">
</div>
<div class="form-group">
<label for="sym">Side Effect: (Ex - Depression, Heart Attack, Peripheral Swelling, etc.)</label>
<input type="text" class="form-control" id="sym" name="symptom">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<div class="footer pt-5">
<iframe src="footer.html"></iframe>
</div>
</body>
</html>