-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 848 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (25 loc) · 848 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<title>HealthNav</title>
</head>
<body>
<!-- Language Selection Dropdown -->
<div id="language-selector">
<select id="language-dropdown">
<option value="en">English</option>
<option value="es">Español</option>
<option value="fr">Français</option>
</select>
</div>
<div id="welcome-page">
<h1 id="welcome-title">Welcome to HealthNav</h1>
<h2 id="welcome-subtitle">Your personalized medical assistant and health chatbot</h2>
<button id="get-started-btn">Get Started</button>
</div>
<script src="script.js"></script> <!-- Link to external JavaScript -->
</body>
</html>