-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (103 loc) · 3.99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!-- Made by Shufi -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Holadok</title>
<!-- Box Icons -->
<link href="https://unpkg.com/[email protected]/css/boxicons.min.css" rel="stylesheet" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/fav.png" />
<!-- Link CSS -->
<link rel="stylesheet" href="css/index.css" />
<!-- Google Fonts -->
<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=DM+Sans:wght@400;500;700&family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet" />
</head>
<body>
<div class="container">
<!-- Navbar Start -->
<nav class="navbar">
<div class="navbar-logo">
<a href="#" class="logo__details">
<img src="assets/fav.png" alt="logo" />
<span>Holadok</span>
</a>
</div>
<div class="navbar-nav">
<ul>
<li><a href="#home" class="active">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#about">About Us</a></li>
</ul>
</div>
<div class="navbar-extra">
<a href="#" id="login">Login</a>
<a href="#" id="book-now">Book Now</a>
</div>
</nav>
<!-- Navbar End -->
<!-- Hero Start -->
<div class="hero">
<div class="hero-tagline">
<h1>Get the healthcare you need, when you need it.</h1>
<p>Manage all of your healthcare needs in one convenient place – from booking appointments to tracking your health history.</p>
<div class="cta">
<a href="#" class="cta__details">Book an Appointment</a>
</div>
</div>
<div class="testimonials">
<div class="testimonials__details">
<div class="testimonials-header">
<div class="testimonials-logo">
<img src="assets/avatar-testimonials.png" alt="" />
<p>Jane Doe</p>
</div>
<div class="quote">
<img src="assets/quote.png" alt="" />
</div>
</div>
</div>
<div class="testimonial-content">
<p>“The doctor appointment app has been great for me. Scheduling appointments and getting medication reminders is much easier, and I love the option for virtual consultations. I'd recommend this app to others.”</p>
</div>
</div>
<div class="hero-img">
<img src="assets/image-hero.png" alt="" />
</div>
</div>
<!-- Hero End -->
<!-- Cards Start -->
<div class="cards">
<div class="cards-wrapper">
<div class="cards-icon"><i class="bx bx-calendar"></i></div>
<div class="cards-caption">
<h5>Online appointment scheduling</h5>
<p>Allows users to schedule appointments with their healthcare provider through the app.</p>
</div>
</div>
<div class="cards-wrapper">
<div class="cards-icon"><i class="bx bx-bell"></i></div>
<div class="cards-caption">
<h5>Medication reminders</h5>
<p>Allows users to schedule appointments with their healthcare provider through the app.</p>
</div>
</div>
<div class="cards-wrapper">
<div class="cards-icon"><i class="bx bx-tv"></i></div>
<div class="cards-caption">
<h5>Virtual consultations</h5>
<p>Allows users to schedule appointments with their healthcare provider through the app.</p>
</div>
</div>
</div>
<!-- Cards End -->
</div>
<!-- Script JS -->
<script src="js/index.js"></script>
</body>
</html>