-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappointments.html
131 lines (118 loc) · 3.54 KB
/
appointments.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Your Appointments</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
}
.subheading {
font-size: 24px;
font-weight: bold;
color: #3e82fc;
margin-top: 20px;
}
.appointment-box {
display: flex;
justify-content: space-between;
margin: 20px 0;
}
.box {
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
width: 40%;
border-radius: 20px;
}
.box-mobile {
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
border-radius: 20px;
margin-top: 20px;
transition: height 0.3s;
overflow: hidden;
}
.box-mobile:hover {
height: auto;
}
button {
background-color: #3e82fc;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
.arrow {
font-size: 24px;
position: absolute;
top: 5px;
right: 20px;
transform: rotate(90deg);
transition: transform 0.3s;
}
.box-mobile:hover .arrow {
transform: rotate(0deg);
}
a{
text-decoration: none;
color: rgb(16, 178, 187);
text-decoration: none;
font-size: x-large;
padding: 20px;
margin: 10px;
text-align: center;
justify-content: center;
color: black;
/* font-weight: bolder; */
font-family: 'Times New Roman', Times, serif;
}
.navs{
background: #f6f2f2;
}
</style>
</head>
<body>
<div class="navs">
<a href="index.html">VitalEase</a>
<a href="offers.html">Offers</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
<a href="personal.html">Updates</a>
<a href="appointments.html">Appointments</a>
<a href="basic.html">Details</a>
<a href="account.html">Account</a>
<a href="about.html">About Us</a>
</div>
<div class="container">
<div class="subheading">Your Appointments</div>
<div class="appointment-box">
<div class="box">
<h3>Days</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente suscipit corporis architecto soluta inventore voluptatibus fugiat maxime, nesciunt optio? Ipsum quaerat sint sit totam quae!</p>
</div>
<div class="box">
<h3>Times</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas vitae soluta, esse veritatis similique quisquam aspernatur molestiae laboriosam rem nesciunt atque in, fuga, consequatur minima.
</p>
</div>
</div>
<div class="subheading">Services</div>
<div class="box-mobile">
<h3>Mobile Support</h3>
<hr>
<h3>Nutrition Guidance</h3>
<hr>
<h3>Speech Therapy</h3>
</div>
</div>
</body>
</html>