Trying my hardest to create this but I\'m terrible at HTML, can anyone finish th
ID: 3737320 • Letter: T
Question
Trying my hardest to create this but I'm terrible at HTML, can anyone finish this and provide me the index.html link at the end so i can submit it?
ITE 115 INTRODUCTION TO COMPUTER APPLICATIONS AND CONCEPTS HTML LAB INSTRUCTIONS Instructions 1. Download and Installing notepad++ a. If you don't have a notepad application, download and install notepad++ Navigate to the following link https://notepad-plus lus.org/download/v7.5.5.html . Click on Notepad+Installer 64-bit x64 to save the installer file npp.7.5.5.Installer.x64.exe to the download folder Double click on the installer file to install notepad++ b. Otherwise, use the Windows OS notepad application (highly recommended) 2. Create a folder and rename it lastname webpage | 3. Creating the web page structure [3 points] Launch notepad or notepad++. Create a new file and save it as index Study the following html code to understand how to create the web page structure http://www.w3schools.com/html/tryit.asp?filename-tryhtml basic document Create a web page structure that contains the following elements: a. b. C. . d. Specify the DOCTYPE as HTML and add the closing tags and as needed e. Save changes 4. Add the web page title [2 points] a. Study the following code to understand how to create the title of the web page w3schools.com/html/tryi b. Add the following elements to the structure you have created in step 3 C. Specify the title of your web page as My Personal Page d. Add the closing tag and as needed e. Save changes 5. Add the heading of the web page and main paragraph [5 points]Explanation / Answer
Give me comment, if you have any doubts...
<!DOCTYPE>
<html>
<head>
<title>My Personal Page</title>
</head>
<body>
<h1>My First Web Page Written in HTML</h1>
<br />
<p>My Self. I am an Indian. I am an expert in chegg</p>
<br />
<h2>My Favourite Picture</h2>
<br />
<img src="Image1.png" alt="My Favorite Picture" width="420px" height="345px" />
<p>This image is my favourite picture.</p>
<br />
<h2>My Favourite Things</h2>
<br />
<ul>
<li>Reading books</li>
<li>Playing with coding</li>
<li>Tirupathi</li>
<li>Designing Websites</li>
<li>Do CHEGG answers</li>
</ul>
<br />
<h2>My Favourite Video</h2>
<bre />
<iframe width="420" height="345" src="https://www.youtube.com/embed/tgbNymZ7vqY?autoplay=1">
</iframe>
<br />
<a href="http://www.nvcc.edu">This is a link to Northen Virginia Commnunity COllege</a>
<br />
<br />
</body>
</html>