In: Computer Science
Hi, I need the HTML5 code for the below.
About Me
**Would like to add a image of a plane or something related to travel here.
Mia Jo
I am taking this class to earn my Computer programmer CL1.
Things I Like to Do:
Places I Want to Go or Have Visited:
Dubai- December'18 Enjoyed shopping and the desert safari the most.
Cuba- August '18 Enjoyed learning about the culture and history.
China- plan to visited next year!!! I can't wait to see the Great Wall of China!
Iceland- At the top of my bucket list.
Education:
I am a second semester student at Star College.
My Goals:
Favorite Website:
https://www.travelchannel.com
Contact Information:
555 on my way st • Houston, TX 77339 • (218) 555-1212
<!DOCTYPE html> <!-- This is just to show that it is
html5 document-->
<html>
<head>
<style> <!-- Inside the style tag you can add any styles
like font, color and so on -->
body{
font-family:Times New Roman;
}
pre{
font-family:Times New Roman;
}
</style>
</head>
<body> <!-- All the contents are inside the body
tag-->
<h2>About Me</h2> <!-- h2 is heading tag-->
<img
src="https://tse4.mm.bing.net/th?id=OIP.eC9rdaWMRLQuOCTwRRJv6AHaEK&pid=Api&P=0&w=309&h=175"
border=10 width=300 height=200/>
<p>Mia Jo</p>
<p>I am taking this class to earn my Computer Programmer
CL1.</p> <!-- This is the paragraph tag-->
<h2>Things I Like to Do:</h2>
<p>Spend time with family</p>
<p>Traveling</p>
<p>People Watch</p>
<h2>Places I Want to Go or Have Visited:</h2>
<p><b>Dubai-</b>December'18 Enjoyed shopping and
the desert safari the most.</p> <!-- <b> is used to
represent in bold-->
<p><b>Cuba-</b>August'18 Enjoyed learning about
the culture and history.</p>
<p><b>China-</b>plan to visited next year!!! I
can't wait to see the Great Wall of China!</p>
<p><b>Iceland-</b>At the top of my bucket
list.</p>
<h2>Education:</h2>
<p>I am a second semester student at Star
College.</p>
<h2>My Goals:</h2>
<pre>To earn my AAS degree.
See as much of the world as possible</pre> <!--
<pre> is used to print the contents in different
lines-->
<h2>Favorite Website:</h2>
<a
href="https://www.travelchannel.com">https://www.travelchannel.com</a>
<!-- <a> is the anchor tag that acts as a link-->
<h2>Contact Information:</h2>
<p>555 on my way st.Houston, TX 77339.(218)
555-1212</p>
</body>
</html>