forked from amrit03b/MedQ
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (70 loc) · 2.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedQ</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<a href="index.html">
<div class="logo">MedQ</div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="department.html">Departments</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="diagnosis.html">Disease Predictor </a></li>
<li><a href="medical history.html">Medical History</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
<!-- Homepage Section -->
<section id="home" class="homepage">
<h1>Welcome to MedQ</h1>
<p>Your Medical Assistant for Hassle-Free Appointments, Medical History Management and disease prediction with finding nearby Doctors.</p>
</section>
<a href="diagnosis.html">
<section id="history" class="diagnosis-new">
<h2>Detect disease from symptoms</h2>
<p>Predict disease from symptoms and find nearby doctors.</p>
</section>
</a>
<!-- Appointment Booking Section -->
<a href="book appointment.html">
<section id="departments" class="appointment-booking">
<h2>Book an Appointment</h2>
<p>Select a department and schedule your appointment</p>
<!-- Your appointment booking form and department selection goes here -->
</section>
</a>
<!-- Departments Section -->
<a href="department.html">
<section id="departments" class="departments">
<h2>Explore Departments</h2>
<p>Discover our specialized medical departments and services.</p>
<!-- Add content specific to departments if needed -->
</section>
</a>
<!-- Medical History Section -->
<a href="medical history.html">
<section id="history" class="medical-history">
<h2>Medical History</h2>
<p>View and upload medical documents for a comprehensive medical history. </p>
<!-- Display and upload medical documents -->
</section>
</a>
<!-- User Dashboard Section -->
<a href="dashboard.html">
<section id="dashboard" class="user-dashboard">
<h2>Your Dashboard</h2>
<p>Display upcoming appointments and other user-specific information</p>
</section>
</a>
<!-- Footer -->
<footer>
<p>© 2024 MedQ. All rights reserved.</p>
</footer>
</body>
</html>