forked from Peehu1308/DocNow_CodeSlush__Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoctors.html
164 lines (149 loc) · 4.56 KB
/
doctors.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
<!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;
overflow-y: auto !important;
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 {
flex: 0 0 auto;
margin-right: auto;
}
.nav .logo img {
max-width: 100px;
height: auto;
display: block;
}
.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;
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.html">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-up" data-aos-duration="2000">
<ol>
<li>
<span style="color:darkblue">01</span>
<p>Dr. Dhyana Tripathi - Dentist</p>
</li>
<li>
<span style="color:darkblue">02</span>
<p>Dr. Ram Singh - Cardiologist</p>
</li>
<li>
<span style="color:darkblue">03</span>
<p>Dr. Dipti Srivastava - Dermatologist</p>
</li>
<li>
<span style="color:darkblue">04</span>
<p>Dr. Kanchan Das - Gynecologist</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>