a)

Heading and ordered lists are block statements and image is inline.
b)
Protocol : https (Hypertext transfer protocol secure)
Hostname : businessexchange
Top level domain name : .ca
File name : coffee-shop-1
6. (HTML) Given the following HTML document: <html> <head> <title>Grandma Cafe</title> </head> <body> <h1>Menu</h1> <ol> <li>Café...
5. (HTML) Given the following HTML document: <html> <head> <title>HTML</title> </head> <body> <h1>Learn HTML</h1> <a href = "https://www.w3schools.com/html/default.asp">HTML5 Tutorial</a> </body> </html> a. [3] Sketch approximately how it will be displayed in a web browser. b. [2] What is the protocol, hostname, top-level domain name, and name of the HTML5 Tutorial page being linked to here?
Create a html5 document template. the correct HTML5 document structure (!doctype, html, head, body) a title for your web page heading tags to break up the various sections of your content (About Me, Education, Employment, etc.) paragraph tags around all paragraphs a link to at least two websites (perhaps link to your college or place of employment) at least one ordered or unordered list (perhaps for your interests or accomplishments) at least one image Your html page should include ALL...
<!DOCTYPE html> <html> <head> <title>Products</title> <style> .heading { text-align: center; font-size: 40px; } #menu { text-align: center; } #menu li { display: inline; font-size: 26px; margin-left: 20px; } .container{ overflow: hidden; margin: 30px; } img { float: left; width: 40vh; height: 40vh; margin-left: 10%; } table { float: right; margin-right: 10%; } table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { font-size: 26px; padding: 10px; text-align: left; } a { color: black; } a:visted {...
HTML Coding <html> <head> <title> Contact -- Charles Robertson </title> </head> <body bgcolor="white"> <table width="700" height="500" border="10"> <!-----row---1----logo---> <tr><td> <img src="20150516_084745" width="700" height="200"> </td></tr> <!-----row-2-navigation-----> <tr><td> <!----start-navigation-table----> <table width="700" height="100" border="5" bgcolor="lightgreen" > <tr><td><a href="HerbFarm.html"> <center> HOME </center></a></td> <td><a href="about3.html"> <center> ABOUT </center></a></td> <td><a href="contact3.html"> <center> CONTACT </center></a></td> <td><a href="gallery3.html"> <center> GALLERY </center></a></td> </tr> </table> <!------end-navigation-table----> </td></tr> <tr><td> <h1>Contact </h1> <form action="thankyou.html"> </form> <div class="row"> <div class="col-75"> <div class="container"> <form action="/action_page.php"> <div class="row"> <div class="col-50"> <h3>Billing Address</h3> <label for="fname"><i...
1 (25 pts.). The following HTML document (with gaps) is initially rendered as shown in the first screenshot below. When the anchor JavaScript is clicked, a link is followed to the header JavaScript lower in the page, and the rendering is as shown in the next screen shot. If, on the other hand, the anchor PHP is clicked, a link is followed to the header PHP still lower in the page, and the rendering is as shown in the last...