Question

In: Computer Science

Hi, I need the HTML5 code for the below. About Me **Would like to add a...

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:

  • Spend time with family
  • Traveling
  • People Watch

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:

  • To earn my AAS degree.
  • See as much of the world as possible

Favorite Website:

https://www.travelchannel.com

Contact Information:

555 on my way st • Houston, TX 77339 • (218) 555-1212

Solutions

Expert Solution

<!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>


Related Solutions

hi i need a code that will give me this output, For the multiply_list, the user...
hi i need a code that will give me this output, For the multiply_list, the user will be asked to input the length of the list, then to input each element of the list. For the repeat_tuple, the user is only asked to enter the repetition factor, but not the tuple. Your program should take the list created before and convert it to a tuple. output expected: (**user input**) ******Create your List ****** Enter length of your list: 3 ******...
Hi, Please I would like a critical analysis (economic scrap book) about this article below related...
Hi, Please I would like a critical analysis (economic scrap book) about this article below related to microeconomics. Thanks "Subdued Inflation Data Ease Market-Volatility Worries" U.S. economy shows few signs of overheating despite tight labor markets By Daniel Kruger The Wall Street Journal U.S. government-bond prices bounced Tuesday after closely watched data on consumer prices signaled inflation remains muted (faible), easing concerns among investors that rising prices could spark a fresh wave of volatility in financial markets. The yield on...
Hi, I would like the following python code rewritten in a different way/structure etc. I got...
Hi, I would like the following python code rewritten in a different way/structure etc. I got it from a question I posted but am worried fellow classmates will also be using it so am covering bases. her it is. #threeUniqueSongs.py #Simulation of professor listening to 3 songs out of playlist of 4 songs 10000 times sampling with replacement possible import random import math #Here playlist is the list of 4 songs i.e. "Eastside", "Better Now", "Lucid Dreams", "Harder, Better, Faster,...
Hi, I have research about IKEA Company and I need below information, Is the evaluation and...
Hi, I have research about IKEA Company and I need below information, Is the evaluation and control process appropriate for a corporation that emphasizes creativity? Are control and creativity compatible? Explain. How can corporate culture be changed? Give examples.? How is the cellular/modular structure different from the network structure? Give at least three differences.?
I have below code! I would like to to convert the larger variable to hex and...
I have below code! I would like to to convert the larger variable to hex and get len() of larger once it's in hex format. Example: if larger number is 900000 then the hex is DBBA0 then len of DBBA0 is 5. I need everything save in new variable! It's in C. // Function to find largest element int largest(int a[], int n) {     int large = a[0], i;     for(i = 1; i < n; i++)     {         if(large < a[i])...
How would I add a quickSort function to the below C++ code to sort the randomly...
How would I add a quickSort function to the below C++ code to sort the randomly generated numbers? #include <iostream> #include <cstdlib> #include <ctime> using namespace std; int i; int array[10]; int odd; int Max; int counter = 0; int main() { cout << "The 10 random elements are: "; cout << endl; srand ( time(0) ); for (int j = 0; j < 99; j++) { i = rand() % 100; if (i != i - 1) array[j] =...
Hi there, I need mpx2100ap arduino code do I need an amplifier to make this work...
Hi there, I need mpx2100ap arduino code do I need an amplifier to make this work ?
Hi, I would like to know about types of enteral feeding: symptons of intolerance and related...
Hi, I would like to know about types of enteral feeding: symptons of intolerance and related nursing interventions, nursing responsibilities related to NG tube feeding, and what assessment data would indicate desired outcome related to enteral nutrition? Thank you so much.
Hi, I have research about IKEA Company and it's strategy and I need below information, What...
Hi, I have research about IKEA Company and it's strategy and I need below information, What type(s) of control of employees and production processes is/are used by IKEA? How does IKEA manage the environmental risks? Evaluate the competitive advantage of the corporation on its market. Suggest some recommendations for the managers of your selected company to improve this competitive advantage.?
I need to add this checkpoint to an existing code that i have in python Checkpoint...
I need to add this checkpoint to an existing code that i have in python Checkpoint 1: Once you have created and tested the Bank Account Class create subclasses to the BankAccount class. There should be two subclasses, CheckingAccount and SavingsAccount. You should add interest_rate to the parent BankAccount class. To the CheckingAccount add variables called per_check_fee default to false and allow_overdraft default to True. To SavingsAccount add the variable transactions_per_month, default it to 5. Create instances of CheckingAccount and...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT