-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (54 loc) · 2.21 KB
/
index.html
File metadata and controls
60 lines (54 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Myra Healthcare</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<a href="startpage.html" class="logo">Myra Healthcare</a>
<ul>
<li><a href="startpage.html">Home</a></li>
<li><a href="#" >About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
<li><a href="form-patient.php" class="login-button">Login-Patient</a></li>
<li><a href="form-doc.php" class="login-button">Login-Doc</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-text">
</div>
</section>
<section class="about">
<h2>About Us</h2>
<p>Myra Healthcare is a leading healthcare provider, committed to providing high-quality medical services to our patients. Our team of experienced healthcare professionals is dedicated to providing personalized care and ensuring that our patients receive the best possible treatment.</p>
</section>
<section class="services">
<h2>Our Services</h2>
<ul>
<li>General Health Checkup</li>
<p>At Myra Healthcare, we strive to make it as easy as possible to book an appointment with one of our healthcare professionals. Simply login and fill out the form and we'll be in touch to confirm your appointment time.</p>
</ul>
</section>
<section class="contact">
<h2>Contact Us</h2>
<form action="#" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
<footer>
<p>© Myra Healthcare. All rights reserved.</p>
</footer>
</body>
</html>