-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-bio-with-linked-css.html
More file actions
53 lines (42 loc) · 1.21 KB
/
Copy pathhtml-bio-with-linked-css.html
File metadata and controls
53 lines (42 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>FDH Bio using linked CSS Stylesheets with Relative Paths</title>
<!--ex4\CSS-->
<!-- This links is file to the .css file with the style instrucgtions -->
<!-- This is VERY IMPORTANT-->
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<header>
<h1>FDH Student Bio</h1>
</header>
<div class="container">
<section id="main-bio">
<h2>Frank D. Howard, IV, PhD, FACP</h2>
<img id ="bio-image" src="./media/images/fdh4pic.png" alt="Picture of Frank Howard">
<p>I'm the old guy . . . background is biophysical chemistry and medical oncology</p>
<p>Hobbies include music, astronomy, reading, sailing, hiking, travel, theater and of course full stack web development!</p>
</section>
<section id="contact-info">
<h2>Contact Info</h2>
<ul>
<li><strong>Email:</strong> <a href="#">fdh4@aol.com</a></li>
<li><strong>Github:</strong> <a href="#">fdh4</a></li>
<li><strong>Portfolio:</strong> <a href="#">work in progress</a></li>
</ul>
</section>
</div>
</body>
</html>