-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (76 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teladocs - Online Medical Consultation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Teladocs</h1>
<img src="logo.png" alt="teladocs logo" width="100px" height="100px">
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<img src="teladocs image download.png" alt="teladocs logo">
<section id="home" class="hero">
<div class="container">
<h2>Welcome to Teladocs</h2>
<p>Providing quality healthcare services from the comfort of your home.</p>
<a href="#services" class="btn">Learn More</a>
</div>
</section>
<section id="services">
<div class="container">
<h2>Our Services</h2>
<div class="service">
<h3>General Consultation</h3>
<p>Connect with our certified doctors for general health advice and treatment.</p>
</div>
<div class="service">
<h3>Specialist Consultation</h3>
<p>Access to a wide range of specialists for more specific medical needs.</p>
</div>
<div class="service">
<h3>Prescription Services</h3>
<p>Get your prescriptions filled without leaving your home.</p>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h2>About Us</h2>
<p>Teladocs is committed to providing accessible and affordable healthcare to everyone. Our team of experienced medical professionals is here to support you with comprehensive online consultations.</p>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>If you have any questions or would like to schedule a consultation, please get in touch with us.</p>
<form>
<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">Submit</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Teladocs. All rights reserved.</p>
</div>
</footer>
</body>
</html>