-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpanda_input.html
More file actions
149 lines (126 loc) · 5 KB
/
panda_input.html
File metadata and controls
149 lines (126 loc) · 5 KB
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
<!DOCTYPE html> <!-- MAKE IT RESPONSIVE !!!!!!! -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Panda</title>
<link rel="stylesheet" href="panda_styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Bhaiksuki&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Chiron+Sung+HK:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
</head>
<body>
<!-- HOMEPAGE -->
<section class="home">
<p class="head">A Smarter Way to Health Insights</p>
<p>Transforming how better health happens</p>
<!-- BOOK -->
<div class="book">
<a href="patient.html">Get Care</a>
</div>
</section>
<!-- NAVIGATION BAR -->
<section class="navbar">
<h2 class="logo">Serenity</h2>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Our Impact</a></li>
<li><a href="patient.html">Patient Portal</a></li>
<li><a href="#">How It Works</a></li>
</ul>
<div class="about">About</div>
</section>
<!-- Revol -->
<section class="second">
<div class="revol">
<h1>Empowering smarter hospitals</h1>
<p>It began with a bold idea: that every hospital should have access to intelligent, AI-driven tools that enhance patient care.<br>
Transforming care delivery one insight at a time.</p>
<div class="about_us">
<p>About Us</p>
</div>
</div>
<div class="cards_container">
<div class="left">
<div class="card-green">
<h1>Disease Prediction</h1>
<p>Predicts potential diseases based on facial and physiological data.</p>
</div>
<div class="card-green">
<h1>Today’s Insights</h1>
<p style="font-style: italic; margin-bottom: 12px;">6 new patient scans uploaded today</p>
<p style="font-style: italic; margin-bottom: 12px;">3 critical risk alerts flagged by AI system</p>
<p style="font-style: italic; margin-bottom: 12px;">System Health: Stable</p>
</div>
</div>
<div class="right">
<div class="top">
<div class="card-pink">
<h1>435+</h1>
<p>Registered patients</p>
</div>
<div class="card-cyan">
<h1>97.4%</h1>
<p>Accuracy</p>
</div>
<div class="card-orange">
<h1>Model</h1>
<p>v2.4 Beta</p>
</div>
</div>
<div class="card-red">
<h1>Vital Tracking</h1>
<p>Continuous monitoring of body vitals via connected IoT sensors.</p>
<p>8 sensors active</p>
</div>
<div class="card-indigo">
<h1>Patient Database</h1>
<p style="margin-bottom: 10px;">Stores diagnostic data securely for every patient.</p>
<p style="margin-bottom: 10px;">500+ records maintained</p>
<p style="margin-bottom: 10px;">Daily reports: 20+</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<section class="footer_container">
<div class="logo">
<h1 style="font-size: 2.7rem;">Serenity</h1>
<p style="color: #b07ebe; font-size: 1.2rem; margin-top: 0.5rem; text-shadow: none;">Transforming how <br>better health happens</p>
</div>
<div class="part2">
<div class="contact">
<h3>To utilise AI service:</h3>
<ul>
<li><span class="bold">Phone N.:</span> 9876543210</li>
<li><span class="bold">E-mail</span> serenityAI@gmail.com</li>
<li><span class="bold">Phone N.:</span> 9876543210</li>
</ul>
</div>
<div class="socials">
<h3>Follow Us</h3>
<ul>
<li><a href="error.html">Facebook</a></li>
<li><a href="error.html">Instagram</a></li>
<li><a href="error.html">Twitter</a></li>
<li><a href="error.html">Youtube</a></li>
</ul>
</div>
<div class="more">
<h3>Know More</h3>
<ul>
<li><a href="#">Patients' words</a></li>
<li><a href="#">Team behind</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Register for services</a></li>
</ul>
</div>
</div>
</section>
<!-- p© 2025 AI Health Portal | College Projectp -->
</footer>
</body>
</html>