-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiagnosis.html
68 lines (67 loc) · 2.63 KB
/
diagnosis.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="index.css">
<title>Sofia Koi</title>
<style>
body {
padding: 0;
margin: 0;
background-color: #B6B6B6;
background-image: url(images/brushbackround2.jpg);
background-size: cover;
font-family: Itim, sans-serif;
font-size: 1.2rem;
color: white;
min-height: 100vh;
}
</style>
</head>
<body>
<div class="brand-logo">
<div class="brand-logo-name" style="margin-left: 280px;">
<img src="images/logo.png" width="40" height="40">
<h2>Sofia Koi Kai SIA O.E.</h2>
<section class="home-main-section">
<div class="call-to-action">
<h4 class="title">Giving you a reason to smile</h4>
</div>
</div>
</div>
<br>
<form style="margin-left: 280px;">
<h2 style="color:#2e324c;">Doctor's Diagnosis</h2>
<label for="Patient">Patient:</label>
<input type="text" id="Patient" name="Patient"><br><br>
<label for="Date">Date:</label>
<input type="date" id="Date" name="Date"><br><br>
<label for="Diagnosis">Diagnosis:</label>
<input type="text" id="Diagnosis" name="Diagnosis"><br><br>
<label for="comments">Details:</label>
<textarea id="comments" name="comments" rows="6" cols="40"></textarea><br><br>
<label for="time">Estimated time of next appointment:</label>
<input type="time" id="time" name="time"><br><br>
<br>
<style>
input[type="submit"] {
background-color:#2e324c;
color: white;
border: none;
border-radius: 10px;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
<input type="submit" value="Submit"
</form>
<body>
</html>