-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.html
172 lines (137 loc) · 5.38 KB
/
user.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!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>
<!--home section starts-->
<section class="home" id="home">
<div class="content">
<h3>Urdaneta City Health Office</h3>
<p>appointment system</p>
</div>
<div class="video-container">
<video src="vid1.mp4" id="video-slider" loop autoplay muted></video>
</div>
</section>
<!--home section ends-->
<img src="white.jpg" alt=""
width="200px"><br>
<section class="schedule" id="schedule">
<div class="box-container">
<div class="box">
<p>NEWS AND UPDATE</p>><img src="blood.png" alt="" height="300px">
<div class="content">
<h3>blood donation <br>save a life</h3>
<p>june 28, 2022</p>
</div>
</div>
</section>
<!--packages section starts-->
<section class="schedule" id="schedule">
<h2 class="heading">
<span>s</span>
<span>c</span>
<span>h</span>
<span>e</span>
<span>d</span>
<span>u</span>
<span>l</span>
<span>e</span>
</h2>
<div class="box-container">
<div class="box">
<img src="jani.jpg" alt="" height="300px">
<div class="content">
<h3>Doc. Leo</h3>
<p>(MONDAY, WEDNESDAY, SATURDAY)</p>
<h1><a href="book1.html">Book now</a></h1>
</div>
</div>
<div class="box">
<img src="jani1.jpg" alt="" height="300px">
<div class="content">
<h3><i class="fas fa-map=marker-alt"></i>Doc. ken</h3>
<p>(TUESDAY AND THURSDAY)</p>
<h1><a href="book1.html">Book now</a></h1>
</div>
</div>
<div class="box">
<img src="jani2.jpg" alt="" height="300px">
<div class="content">
<h3><i class="fas fa-map=marker-alt"></i>doc. dave</h3>
<p>(FRIDAY AND SUNDAY)</p>
<h1><a href="book1.html">Book now</a></h1>
</div>
</div>
</section>
<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>
<script src="main.js"></script>
</body>