Created
January 18, 2020 16:22
-
-
Save simistern/175464eda4e146b2839622c3da7698fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en-us"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>CSS Stylesheets with Relative Paths</title> | |
</head> | |
<body> | |
<header> | |
<h1>Student Bio</h1> | |
</header> | |
<div> | |
<section> | |
<h2>Your Name</h2> | |
<img src="https://placehold.it/200x200" alt="Your Name"> | |
<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> | |
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment