Write a program called WebPageGenerator that asks the user their name, then asks the user to enter a sentence that describes them.Use the following prompts and formatting. Enter your name: Julie Taylot Describe yourself: I am a computer science major, a member of the jazz club, and I hope to work as a mobile app developer after I graduate. Once the user has entered the requeted input, the program should create an HTML file, containing the input, for a simple Web page. Here is an example of the HTML content, using the sample input previously shown: Julie Taylor I am a computer science major, a member of the Jazz club, and I hope to work as a mobile app developer after I graduate.
Write a program called WebPageGenerator that asks the user their name, then asks the user to enter a sentence that describes them.Use the following prompts and formatting.
Enter your name: Julie Taylot
Describe yourself: I am a computer science major, a member of the jazz club, and I hope to work as a mobile app developer after I graduate.
Once the user has entered the requeted input, the program should create an HTML file, containing the input, for a simple Web page. Here is an example of the HTML content, using the sample input previously shown:
<html>
<head>
</head>
<body>
<center>
<h1>Julie Taylor</h1>
</center>
<hr>
I am a computer science major, a member of the Jazz club,
and I hope to work as a mobile app developer after I graduate.
<hr>
</body>
</html>
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images