-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML-Bio-withCSS.html
37 lines (29 loc) · 1006 Bytes
/
HTML-Bio-withCSS.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
<!-- STUDENTS: Take note of the differences in the file directories of PreDeploy and ReadyToDeploy. -->
<!DOCTYPE html>
<html>
<head>
<title>1.2.9 Exercise</title>
<!-- This critical line points your HTML to the CSS file. Notice the "relative" pathway -->
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<header>
<h1>Student Bio</h1>
</header>
<div class="container">
<section id="main-bio">
<h2>Your Name</h2>
<img src="http://placehold.it/200x200" alt="Your Name" id="bio-image">
<p>Write a short paragraph or two about yourself, or use placeholder text from <a href="http://www.lipsum.com/">www.lipsum.com</a></p>
</section>
<section id="contact-info">
<h2>Contact Info</h2>
<ul>
<li><strong>Email:</strong> <a href="#">[email protected]</a></li>
<li><strong>Github:</strong> <a href="#">sampleName</a></li>
<li><strong>Portfolio:</strong> <a href="#">coming soon</a></li>
</ul>
</section>
</div>
</body>
</html>