-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (95 loc) · 3.21 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
<!DOCTYPE html>
<html>
<!-- THE COLOUR SHCEME
#A1E8AF
#94C595
#747C92
#372772
#3A2449 -->
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300" rel="stylesheet">
<title>My Pill Effect</title>
</head>
<body>
<div>
<ul class="navbar">
<li class="logo"><a href="index.html">My Pill Effect</a></li>
<li class="navbar"><a href="about.html">About</a></li>
<li class="navbar"><a href="contact.html">Contact</a></li>
<li class="navbar"><a href="index.html">Home</a></li>
</ul>
</div>
<div class="text">
<p>This website allows you to find out about any potential harmful effects caused by your medications.</p>
<p>Please enter your prescriptions and dosages.</p>
</div>
<form action="/action_page.php" method="post" class="textt">
<!-- This is indicates where its being submitted to. Add a method="post" if we're sending lots of data, URL is limited to 3000 characters-->
<div class="Pre">
Prescription 1:
<input type="text" name="Prescription 1"><br>
<div style="float: left; margin-right: 7px">
<select name="mass/volume unit" class="form">
<option value="">mcg</option> <!-- That's micrograms -->
<option value="mg">mg</option>
<option value="g">g</option>
<option value="kg">kg</option>
<option value="mL">mL</option>
<option value="L">L</option>
<option value="mm">mm</option>
<option value="cm">cm</option>
<option value="m">m</option>
<option value="drops">drops</option>
</select>
<input type="text" name="number of times" placeholder="#" style="width: 50px">
times per
</div>
<div style = "display: inline-block">
<select name="time unit">
<option value="day">hour</option>
<option value="hour">day</option>
<option value="week">week</option>
</select><br><br>
</div>
</div>
<div class="Pre">
Prescription 2:
<input type="text" name="Prescription 2"><br>
<div style="float: left; margin-right: 7px">
<select name="mass/volume unit" class="form">
<option value="mcg">mcg</option> <!-- That's micrograms -->
<option value="mg">mg</option>
<option value="g">g</option>
<option value="kg">kg</option>
<option value="mL">mL</option>
<option value="L">L</option>
<option value="mm">mm</option>
<option value="cm">cm</option>
<option value="m">m</option>
<option value="drops">drops</option>
</select>
<input type="text" name="number of times" placeholder="#" style="width:50px">
times per
</div>
<div style = "display: inline-block;">
<select name="time unit"">
<option value="day">hour</option>
<option value="hour">day</option>
<option value="week">week</option>
</select><br><br>
</div>
</div>
<!-- Prescription 1, Dosage, (mass unit dropdown), (time unit dropdown)
Prescription 2, Dosage, (mass unit dropdown), (time unit dropdown), (plus sign for more prescriptions) -->
<input type="submit" name="" class="submit">
</form>
<div class="results">
<h1>Results:</h1>
<div class="boxed">
These are the results:
</div>
</div>
</body>
</html>