forked from harshitha-sheshagiri/hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.html
62 lines (53 loc) · 1.84 KB
/
website.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doctor Portal</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
<nav>
<ul class="navbar">
<div class="logo"></div>
<h1>DOCTIFY</h1>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact Us</a></li>
<li><a href="#features">Features</a></li>
</ul>
</nav>
</header>
<!-- Main Image Section -->
<section class="hero-image">
<div id="tagline">Healthcare for Good <br>Today. Tomorrow. Always
</div>
</section>
<!-- Features Section -->
<section id="features" class="features-section">
<!-- <a href="#" class="fbox0" ><div class="feature-box">
<h2>Chat Messaging</h2>
<p>Store and retrieve your past prescriptions easily.</p>
</div></a> -->
<a href="http://127.0.0.1:5001" class="fbox1" ><div class="feature-box">
<h2>Summary</h2>
<p>Summarizing the appointment</p>
</div></a>
<a href="http://127.0.0.1:5003" class="fbox2"><div class="feature-box">
<h2>Medicine Reminders</h2>
<p>Set reminders for your medications and never miss a dose.</p>
</div></a>
<a href="http://127.0.0.1:8000" class="fbox3"><div class="feature-box">
<h2>Prescription Text Processing</h2>
<p>Convert handwritten prescriptions into digital text.</p>
</div></a>
</section>
<div class="containerforimg">
<div class="docimg"><img src="" alt=""></div>
<div class="docimg"></div>
<div class="docimg"></div>
<div class="docimg"></div>
</div>
<script src="main.js"></script>
</body>
</html>