-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.61 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
<!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, initial-scale=1.0">
<link rel="stylesheet" href="index.css"/>
<title>Landing Page</title>
</head>
<body>
<section class="main">
<nav>
<a href="#" class="logo">
<img src="assets/logo.png" alt="logo"/>
</a>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#">Dashboard</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">About</a></li>
</ul>
<a href="#" class="usericon">
<img src="assets/user.webp" alt="usericon"/>
</a>
</nav>
<div class="glance">
<h1>HIC</h1>
<p>Health information cloud provide a secure and centralized platform for storing and accessing medical data and information.</p>
<p>Your Health is Our Priority; Providing Compassionate Care for a Better Tomorrow</p>
<div class="glancebuttons">
<a href="http://localhost/finale/userlogin.html"><button type="button">User Login</button></a>
<a href="http://localhost/finale/doctorlogin.html"><button type="button">Doctor Login</button></a>
<a href="http://localhost/finale/hospitallogin.html"><button type="button">Hospital Login</button></a>
</div>
</div>
</section>
</body>
</html>