-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmgbio.html
39 lines (37 loc) · 1.17 KB
/
mgbio.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
<!-- Activity 1 Writing a basic HTML Page with a BIO -->
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<title>Activity 1: Creating a Basic HTML File</title>
</head>
<body>
<!-- Site Header -->
<header>
<!-- The most important headling of the page -->
<h1>Student Bio</h1>
</header>
<div>
<!--Section 1: Bio-->
<section>
<!--h2 header: 2nd tier. Not as important as h1 but more than one allowed -->
<h2>Matthew Glassman</h2>
<!--Image with a link and alt tag-->
<img src="https://scontent-iad3-1.xx.fbcdn.net/v/t1.0-9/1385960_10100901812592428_1900940280_n.jpg?oh=09eb7671d2478670e2bc7732b7f73821&oe=589846F7" width="250" height="200" alt="Matthew Glassman">
<!--Bio Paragraph with embedded link-->
<p>Yadda yadda yadda <a href="http://www.lipsum.com/">Lipsum Nonsense</a></p>
</section>
<!--Contact Info-->
<section>
<!--Tier 2 headline-->
<h2>Contact Info</h2>
<!--Unordered List-->
<ul>
<li><strong>Email: <a href="[email protected]">[email protected]</a></li>
<li><strong>GitHub: <a href="#">matthewglassman</a></strong></li>
<li><strong>Portfolio: <a href="#">Coming Soon</a></strong></li>
</ul>
</section>
</div>
</body>
</html>