-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (75 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <base href="https://mediconnect.com/"> -->
<title>MediConnect - Effortless Medicine Stock Tracking</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/Landing_Page.css"> <!-- Link to external CSS file -->
</head>
<body>
<header>
<h1>MediTrack</h1>
<!-- <p>Effortless Medicine Stock Tracking</p> -->
</header>
<nav>
<a href="index.html">Home</a>
<a href="AboutUs.html">About Us</a>
<a href="Planner.html">Planner</a>
<!-- <a href="#contact">Contact</a> -->
</nav>
<main>
<section class="hero">
<h2>Effortless Medicine Stock Tracking</h2>
<p>MediConnect helps you manage your medicine supplies with ease.</p>
<a href="SignUp.html" class="hero-btn">Get Started</a>
</section>
<section id="features" class="features">
<div class="feature">
<i class="fas fa-chart-line"></i>
<h3>Real-Time Tracking</h3>
<p>Monitor your medicine stocks in real-time and get alerts when supplies are running low.</p>
</div>
<div class="feature">
<i class="fa-solid fa-truck"></i>
<h3>User-Pharmacy interlink</h3>
<p>Provides the best in industry standards of pharmacies at your doorstep.</p>
</div>
<div class="feature">
<i class="fas fa-users"></i>
<h3>Team Collaboration</h3>
<p>Easily share and manage medicine stocks across multiple locations and teams.</p>
</div>
</section>
<section id="about" class="about">
<h2>About MediConnect</h2>
<p>MediConnect is a leading platform for effortless medicine stock tracking. Our intuitive and user-friendly
interface helps healthcare providers, pharmacies, and hospitals stay on top of their medicine supplies
with ease.
</p>
</section>
<!-- <section id="contact" class="contact">
<h2>Contact Us</h2>
<form class="contact-form">
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>
</section> -->
</main>
<footer>
<p>© 2024 MediConnect. All rights reserved.</p>
<p>
<a href="https://github.com/TechShreyash" target="_blank" style="color: white;">TechShreyash</a> |
<a href="https://github.com/swastikd16" target="_blank" style="color: white;">Swastik Dan</a> |
<a href="https://github.com/priyanshu-matrix" target="_blank" style="color: white;">Priyanshu Matrix</a> |
<a href="https://github.com/Shourya-31" target="_blank" style="color: white;">Shourya 31</a>
</p>
</footer>
</body>
</html>