Use Notepad to create basic web page and writing HTML code C
Use Notepad to create basic web page and writing HTML code. Create a page names 211page1.html use line breaks if needed to erase sure each item displays on a line by itself. Step 2: write html code for the following create a comment containing teachers first and last name Create a title displaying teachers first and last name create plain text that displays first and last name
Solution
<!DOCTYPE html>
<html>
<head><title>First & last name</title></head>
<body>
<!--<p>First name</p>
<p>Last name</p>-->
<p>First and last name</p>
</body>
</html>
