-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
146 lines (115 loc) · 5.78 KB
/
about.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
<!Doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width, initia-scale=1.0">
<title>Online Appointment Sysyem
</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="Stylesheet" href="style.css">
</head>
<body>
<!--header section starts-->
<header>
<div id="menu-bar" class="fas fa-bars"></div>
<a href="#" class="logo"><span>Urdaneta</span>CHO</a>
<nav class="navbar">
<a href="user.html">home</a>
<a href="book.html">book</a>
<a href="schedule.html">schedule</a>
<a href="about.html">about</a>
<a href="login1.html">login</a>
<a href="user.html">logout</a>
</nav>
<form action="" class="search-bar-container">
<input type="search" id="search-bar" placeholder="search here...">
<label for="search-bar" class="fas fa-search"></label>
</form>
</header>
<!--header selection ends-->
<!--login form container-->
<div class="login-form-container">
<i class="fas fa-times" id="form-close"></i>
<form action="">
<h3>login</h3>
<input type="email" class="box" placeholder="enter your email">
<input type="password" class="box" placeholder="enter your email">
<input type="submit" value="login now" class="btn">
<input type="checkbox" id="remember">
<label for="remember">Remember me </label>
<p>forget password?<a href="#">click here</a></p>
<p>don't have an account?<a href="#">register now</a></p>
</form>
</div>
<!--book selection ends-->
<!--packages section starts-->
<section class="schedule" id="schedule">
<div class="box-container">
<div class="box">
<img src="img/p-1.jpg" alt="">
<div class="content">
<h3>mumbai</h3>
<p>URDANETA CITY HEALTH OFFICE <br><br>
Responsible for formulating program
implementation guidelines and rules and
regulations in order to assist the LCE in
the efficient, effective and economical implementation
of health service program geared to implement
health-related projects and activities; Responsible
for the formulation of measures in carrying out activities to
ensure the delivery of basic services and provision of adequate
facilities relative to health services provided under Sec. 17 of the LGC of 1991;
Responsible for the development of plans and strategies
and upon approval thereof by the LCE, implement the same,
particularly those which have to do with health programs
and projects which the LCE is empowered to implement and
which the SP is empowered to provide under the LG Code of 1991;</p><br>
<p>Vision <br><br>
URDANETA CITY is envisioned to be a center
of agro-industrial development and educational
advancement, a city with viable solid waste management,
admirable traffic system, sustainable social</p>
<p>Mission <br><br>
URDANETA CITY is committed to provide adequate
infrastructure facilities and basic social services
to promote a healthy and safe environment, to practice
good governance and dynamic leadership in ensuring political
and economic self-sufficiency, and to promoted people participation
and policy formulation and project implementation.</p>
</div>
</div>
<div class="footer">
<div class="col-1"></div>
<h2>USEFUL LINKS<br><br>
<a href="user.html" class="fas fa-arrow-right">home</a><br><br>
<a href="book.html"class="fas fa-arrow-right">book</a><br><br>
<a href="schedule.html"class="fas fa-arrow-right">schedule</a><br><br>
<a href="about.html"class="fas fa-arrow-right">about</a><br><br>
<a href="https://www.facebook.com/profile.php?id=100068937318734.html"class="fas fa-arrow-right">facebook</a><br><br>
</h2>
<div class="col-2"></div>
<div class="col-3">
<h2>ADDRESS</h2><BR>
<h2>Alexander Street, Urdaneta City Pangasinan 2428 <br>
0933 869 4961<br>
info@urdaneta-cho.com
</h2>
</div>
</div>
</section>
<!--packages section ends-->
<script src="main.js"></script>
</body>