-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemergency.html
89 lines (52 loc) · 2.24 KB
/
emergency.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
<!DOCTYPE html>
<html>
<head>
<title>Hospital Site</title>
<link rel="stylesheet" type="text/css" href="site.css">
</head>
<title>Hospital Site</title>
<link rel="stylesheet" href="site.css" />
</head>
<body>
<div class="navbar">
<div class="navbar-brand">
<h1>NOREJ HOSPITAL</h1>
</div>
<div class="navbar-links">
<h3><a href="index.html">HOME</a></h3>
<h3><a href= "aboutUs.html">ABOUT US </a></h3>
<h3><a href="depts.html">DEPARTMENTS</a></h3>
<h3><a href="register.html"> REGISTER </a> </h3>
<h3><a href="#">EMERGENCY</a> </h3>
</div>
<p id="date"> </p>
</div>
<!-- FORM CONTAINER BEGINS HERE -->
<div class="emergencyContainer">
<div class="emergencyForm">
<form>
Name of Guardian <br>
<input type="text" size="50" placeholder="Enter guardians name here" /> <br> <br>
Name of Victim<br>
<input type="text" size="50" placeholder="Enter your name here" /> <br> <br>
Type of Injury or Emergency <br>
<input type="text" size="50" placeholder="please enter the type of emergency here"/><br> <br>
Please give a short description of the situation <br>
<textarea rows="10" cols="50" > </textarea> <br><br>
Enter the codes of your Hospital card if you have one.<br>
<input type="number" ><br> <br>
<button>Send</button> <br> <br>
</form>
</div>
</div><!-- FORM CONTAINER ENDS HERE -->
<footer >
<p align="center"> For more contact: <br>
<a href= "noraboamaah@gmail.com"> mail me <
<a href= "0553064366"> call me </a> ||
<a href = "http://www.facebook.com/Nora Boamaah Mensah"> facebook me </a> <br>
Copyright 2017. All rights reserved
</p>
</footer>
<script type="text/javascript" src="index.js"></script>
</body>
</html>