-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapstoneProject-2.html
More file actions
100 lines (81 loc) · 2.49 KB
/
Copy pathCapstoneProject-2.html
File metadata and controls
100 lines (81 loc) · 2.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Doctors Page</title>
<style>
body {
background-color: black;
color: white;
margin: 0;
padding: 10px;
font-family: Arial;
}
#Heading {
text-align: center;
font-size: 35px;
text-decoration: underline;
color: white;
}
img {
width: 100%;
max-width: 700px;
height: auto;
display: block;
margin: 0 auto;
}
#Name {
text-align: center;
font-size: 25px;
margin-top: 10px;
color: yellowgreen;
}
span {
display: block;
max-width: 800px;
margin: 10px auto;
text-align: center;
font-size: 16px;
line-height: 1.4;
}
footer h1 {
text-align: center;
color: tomato;
font-size: 40px;
}
@media (max-width: 600px) {
#Heading {
font-size: 25px;
}
#Name {
font-size: 20px;
}
footer h1 {
font-size: 28px;
}
}
</style>
</head>
<body>
<h1 id="Heading">Meet our professional doctors</h1>
<img src="https://www.mskcc.org/sites/default/files/styles/large/public/node/107173/3x2/balachandran-vinod_200713_05-1200x800.jpg" alt="">
<h1 id="Name">Dr. Vinod Balachandran</h1>
<span>
I am a surgical oncologist with special training in treating diseases of the pancreas,
bile duct, gallbladder, and liver. I research new ways to treat pancreatic cancer
using the immune system. My focus is on providing exceptional care for patients.
</span>
<br><br>
<img src="https://www.fortishealthcare.com/drupal-data/doctors/dr-rana-patir-6059.jpg" alt="">
<h1 id="Name">Dr. Rana Patir</h1>
<span>
Dr. Rana Patir is one of the most experienced neurosurgeons in India with 32+ years
of experience. He specializes in minimally invasive brain and spine surgery and has
performed more than 10,000 neurosurgical procedures.
</span>
<footer>
<h1>AND MANY MORE...</h1>
</footer>
</body>
</html>