forked from Peehu1308/DocNow_CodeSlush__Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
184 lines (172 loc) · 5.83 KB
/
services.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DocNow</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.1/aos.css">
<style>
body {
background-color: aliceblue;
font-family: 'Courier New', Courier, monospace;
overflow-x: hidden !important; /* Keep horizontal overflow hidden */
overflow-y: auto !important; /* Allow vertical scrolling */
margin: 0 !important;
padding: 0 !important;
}
* {
text-decoration: none;
}
.nav {
position: fixed;
z-index: 1000;
top: 0;
right: 0;
left: 0;
height: 80px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0 25px;
background-color: antiquewhite;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.nav .logo {
/* Align the logo to the left */
flex: 0 0 auto; /* Do not grow or shrink */
margin-right: auto; /* Pushes the logo to the left */
}
.nav .logo img {
/* Adjust the size of the logo */
max-width: 100px; /* Smaller max width of the logo */
height: auto; /* Maintain aspect ratio */
display: block; /* Remove any extra space below the image */
}
.nav .link a {
margin-right: 25px;
font-size: 16px;
font-weight: 600;
color: #000;
}
.nav .link .mainlink {
color: dodgerblue;
}
.nav .link {
color: deepskyblue;
}
.nav .link .button {
padding: 8.5px 34px;
margin-left: 65px;
display: inline-block;
font-size: 14px;
color: #000;
transition: all 0.4s ease-in-out;
text-transform: capitalize;
border: 1px solid #000;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.nav .link .button:hover {
color: rgb(39, 120, 213);
}
.landing {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0 10px;
padding-top: 120px; /* Increased padding to prevent content from being hidden */
height: 100vh;
}
ol {
list-style: none;
color: chocolate;
}
ol li {
font-size: 34px;
position: relative;
margin-bottom: 20px;
border-bottom: 1px solid #fff;
}
li p {
font: 16px;
color: #000;
padding-left: 60px;
line-height: 30px;
opacity: 0.6;
}
li span {
position: absolute;
line-height: 25px;
font-weight: 600;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="nav">
<div class="logo">
<img src="images\docnow.png" alt="DocNow Logo">
</div>
<div class="link">
<a href="index.html" class="mainlink">Home</a>
<a href="about.html">About</a>
<a href="#">Services</a>
<a href="#">Chat</a>
<a href="#">News</a>
<a href="contact.html">Contact-us</a>
<a href="#" class="button">Learn more</a>
</div>
</div>
<!-- Landing page -->
<div class="landing">
<div class="landingtext" data-aos="fade-right" data-aos-duration="2000">
<ol>
<li>
<span style="color:darkblue">01</span>
<p>Dentist - Dental care</p>
</li>
<li>
<span style="color:darkblue">01</span>
<p>Cardiologist - Heart specialist</p>
</li>
<li>
<span style="color:darkblue">02</span>
<p>Pediatrician - Child specialist</p>
</li>
<li>
<span style="color:darkblue">03</span>
<p>Dermatologist - Skin specialist</p>
</li>
<li>
<span style="color:darkblue">04</span>
<p>Gynecologist - Female reproductive health</p>
</li>
<li>
<span style="color:darkblue">05</span>
<p>Oncologist - Cancer specialist</p>
</li>
<li>
<span style="color:darkblue">06</span>
<p>Neurologist - Nervous system specialist</p>
</li>
<li>
<span style="color:darkblue">07</span>
<p>Ophthalmologist - Eye specialist</p>
</li>
<li>
<span style="color:darkblue">09</span>
<p>Orthopedic Surgeon - Bone and joint specialist</p>
</li>
</ol>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.1/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>