-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdashboard.html
116 lines (108 loc) · 5 KB
/
dashboard.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
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Medical Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
}
header {
background: linear-gradient(90deg, #4b6cb7 0%, #182848 100%);
}
.btn {
transition: all 0.3s ease;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.carousel-item img {
height: 400px;
object-fit: cover;
}
.carousel-item {
transition: transform 0.6s ease-in-out;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
transition: opacity 0s 0.6s;
}
@media (max-width: 768px) {
.carousel-item img {
height: 300px;
}
}
@media (max-width: 576px) {
.carousel-item img {
height: 200px;
}
}
#slideshow{
margin-top: 200px;
background-image: url(./img/geopatblue.jpg);
}
</style>
</head>
<body>
<div class="container-fluid p-0">
<header class="bg-primary text-white p-3">
<div class="d-flex justify-content-between align-items-center">
<h1 class="mb-0">HealthConnect</h1>
<div>
<button class="btn btn-outline-light me-2">Login</button>
<button class="btn btn-light">Sign Up</button>
</div>
</div>
</header>
<main class="container mt-4">
<div class="row">
<div class="col-md-6 mb-4 mb-md-0">
<img src="https://images.unsplash.com/photo-1551601651-2a8555f1a136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Team of doctors" class="img-fluid rounded shadow-lg" />
</div>
<div class="col-md-6">
<div id="slideshow" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner rounded shadow-lg">
<div class="carousel-item active">
<img src="https://images.unsplash.com/photo-1527613426441-4da17471b66d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="d-block w-100" alt="Medical equipment">
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1585435557343-3b092031a831?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="d-block w-100" alt="Doctor examining patient">
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="d-block w-100" alt="Medical research">
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1611689342806-0863700ce1e4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="d-block w-100" alt="Patient care">
</div>
<div class="carousel-item">
<img src="https://images.unsplash.com/photo-1587351021759-3e566b6af7cc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" class="d-block w-100" alt="Medical technology">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#slideshow" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#slideshow" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var myCarousel = new bootstrap.Carousel(document.getElementById('slideshow'), {
interval: 4000,
wrap: true
});
});
</script>
</body>
</html>