Last active
May 13, 2020 00:40
-
-
Save juliettech13/50e5041d7ac8b7466622b264843a16e2 to your computer and use it in GitHub Desktop.
HTML intro - Step 2
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"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>{ YOUR_WEBSITES_NAME }</title> | |
</head> | |
<body> | |
<img src="images/{ your_image.png }" alt="{ YOUR NAME }"> | |
<h1>{ YOUR_NAME [YOUR FAVORITE EMOJI π©π»βπ€] }</h1> | |
<h4>{ This is the line people will read most about your website. Use it wisely π }</h4> | |
<a href="mailto:{ [email protected] }">Contact me</a> | |
<ul> | |
<li><a href="https://twitter.com/YOUR_USERNAME">Twitter</a></li> | |
<li><a href="https://github.com/YOUR_USERNAME">GitHub</a></li> | |
<li><a href="https://medium.com/@YOUR_USERNAME">Medium</a></li> | |
<li><a href="https://instagram.com/YOUR_USERNAME">Instagram</a></li> | |
</ul> | |
<p>{ INTRO ABOUT <strong>YOU</strong> }</P> | |
<ul> | |
<li> | |
<img src="{ path_to_your_image.png => 'images/software.png' }" alt="code"> | |
<a href="#">software</a> | |
</li> | |
<li> | |
<img src="{ path_to_your_image.png }" alt="writer"> | |
<a href="#">writer</a> | |
</li> | |
<li> | |
<img src="{ path_to_your_image.png }" alt="travel"> | |
<a href="#">travel</a> | |
</li> | |
</ul> | |
<p>This was made for you with π by <a href="https://www.github.com/{ your_username }">{ your_name }</a>.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment