-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoc.html
129 lines (110 loc) · 3.19 KB
/
Doc.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 250px;
margin: auto;
text-align: center;
font-family: arial;
}
.Container{
border-radius: 5px;
background-color:rgba(255, 255, 255, 0.65);
padding: 0px;
width: 79%;
margin-top: 0px;
}
.container1{
position: absolute;
font-size: 25px;
top: 0px;
left: 200px;
transform: translate(20%, 25%);
padding: 2px;
}
.title {
color: grey;
font-size: 18px;
}
.content {
position: absolute;
bottom: 0;
background: rgb(245, 239, 239); /* Fallback color */
background: rgba(255, 255, 255, 0.65); /* Black background with 0.5 opacity */
color: #1b1919;
width: 100%;
padding: 0px;
}
button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #000;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
a {
text-decoration: none;
font-size: 22px;
color: black;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-gap: 0px;
}
button:hover, a:hover {
opacity: 0.7;
}
</style>
</head>
<body>
<div class="Container">
<img style="height: 170px; width: 280px" ng-src="https://mmdconnect.appspot.com/images?eid=33179&ifn=Ramaiah Logo.png" src="https://i.pinimg.com/originals/33/e0/c5/33e0c5ff9c271eb7bfeb0fe7b0b91d68.jpg">
</div>
<img src="k.jpg" alt="Nature" style="width:100%;">
<div class="content">
<h2 style="text-align:center">Some of our best doctors </h2>
<div class="grid-container">
<div class="card">
<img src="g.png" alt="Dr.Kevin" style="width:75%">
<h1>Dr.Kevin</h1>
<p class="title">Neurosurgeon</p>
<p>Harvard University</p>
<p><button>Contact</button></p>
</div>
<div class="card">
<img src="g.png" alt="Dr.John" style="width:75%">
<h1>Dr.John</h1>
<p class="title">Cardiologist</p>
<p>Harvard University</p>
<p><button>Contact</button></p>
</div>
<div class="card">
<img src="g.png" alt="Dr.Mark" style="width:75%">
<h1>Dr.Mark</h1>
<p class="title">Pediatrician</p>
<p>Harvard University</p>
<p><button>Contact</button></p>
</div>
<div class="card">
<img src="g.png" alt="Dr.George" style="width:75%">
<h1>Dr.George</h1>
<p class="title">Consultant Orthopedics</p>
<p>Harvard University</p>
<p><button>Contact</button></p>
</div>
</div>
</div>
<div class="container1">
<h1 style="text-align: center">Healthcare Hospitals</h1>
</div>
</body>
</html>