Question

Write the following intention of a web developer in the form of an HTML comment –...

Write the following intention of a web developer in the form of an HTML comment – this is a placeholder for an image. Write a code to notify the browser that this is an HTML 5 document.?

Homework Answers

Answer #1

Here is the required solution

An image placeholder is a dummy image designed to draw attention to the need for an actual image.

<!----The line !DOCTYPE html tell the browser that this is a HTML 5 document......>

<!DOCTYPE html>
<html>
<head>
<title> Title</title>
</head>
<body>

<!----This is placeholder for a image------>
<img src="placeholder for a image>
<h1>My First Heading</h1>

</body>
</html>

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Consider a web page that consists of one base html file and 20 jpg images. The...
Consider a web page that consists of one base html file and 20 jpg images. The base html file and 5 of the images are hosted at www.ucf.edu (UCF web server) and the other 15 images are hosted at www.google.com (Google Inc. web server). Assume that both the base html and 20 images are small enough to fit in one TCP segment each. Also, assume that our web browser is configured to have only one TCP connection at a time...
<!doctype html> <html lang=”en”>   <head>     <title>Principal Calculation Form</title>     <meta charset="utf-8"/>         
<!doctype html> <html lang=”en”>   <head>     <title>Principal Calculation Form</title>     <meta charset="utf-8"/>                   <script src="code.js"></script>   </head>      <body onload="setFocus();">     <div class="container">                                       <div class="main">                                                                                <form action="#" method="post" name="form_name" id="form_id" class="form_class" >                                                                           <h2>--Principal Loan Form--</h2>                                                                                                                                                      <h5>Disclaimer: This software by no mean will precisely predict your mortgage through your lender company.  This Software will only assume the four items below in order to make an educated guess or prediction to your exact mortgage interests amount and the duration of your loan from your lender. <img...
A possible approach for building a web-based database application is which statements correct? thanks An html...
A possible approach for building a web-based database application is which statements correct? thanks An html form allows submission of values that are transmitted as key-value pairs to a page with a php block that connects to a database and constructs html content based on the result of the database query. The resulting html is sent to the client. An html form creates a connection to a database, inserts the key-value pairs of that form into queries using prepared statements,...
Browse the web and find a site that does not contain a user survey form. Write...
Browse the web and find a site that does not contain a user survey form. Write a user survey with 10 questions that you would use on the site. Tailor the questions to the site’s content and goals. The survey’s questions have to be real, any irrelevant question may lead to mark deduction. a. Restrict the user options with radio buttons, dropdown lists, check boxes, etc. b. Design a wireframe that includes the survey, using a tool like pencil (http://pencil.evolus.vn/)...
Section 1.1: Creating the First Table Locate the HTML comment that reads "table 1" just below...
Section 1.1: Creating the First Table Locate the HTML comment that reads "table 1" just below the opening body tag. Add a table tag with the following specifications using the style attribute and CSS: width with a value of 650 pixels a margin set to auto – this will center the table within the web page a border set to none - this removes the table border Add a table row (<tr>) Add a table data container tag (<td></td>) Within...
Hi, there. A question about web development. I'm using the jquery to try the reset method...
Hi, there. A question about web development. I'm using the jquery to try the reset method in an input form in the PHP file but it didn't work. Here is a part of my code. <div id='signbox' class='modal-window'> <form id= 'signF' method='post' action='centerControl.php'> ... <input id='resetSign' type='button' value ='Reset'>; ... </form> </div> <script> $(document).ready(function(){ $("#resetSign").click(function(){ $("#signF")[0].reset() }); }); </script> And one more question that I'm a new player so what kind of tool I can check all my jquery PHP...
PART B- Javascript Using a text editor (VS Code or Notepad) and a web browser, you...
PART B- Javascript Using a text editor (VS Code or Notepad) and a web browser, you will demonstrate how to create an HTML file, externally link a JavaScript file, and write some source code in the JavaScript file. a..Create two blank files to be an HTML file and a JavaScript file. The file names should be partA.html and partA.js. b.. Create a basic HTML webpage structure. c..Link the JavaScript file to the HTML file using the <script> tag. d.. Prompt...
The following code shows the head and body sections in an HTML file: <head> <script> function...
The following code shows the head and body sections in an HTML file: <head> <script> function init() { var x, y, z; z = document.getElementById("abc").innerHTML; y = "B"; x = "C"; document.getElementById("abc").innerHTML = x+y+z; } </script> </head> <body onload="init();"> <p id="abc">A</p> </body> What would be displayed on the browser when the above webpage is opened? BC CB or CBA or A or ABC
(javascript/css/html) Follow these steps to implement the following browser-based puzzle game: 1. Get a photo of...
(javascript/css/html) Follow these steps to implement the following browser-based puzzle game: 1. Get a photo of yourself and save it as an image file 2. Use a image-splitting program such as splitter.imageonline.co to break the image into 9 roughly equal parts (3 x 3). Save those files in a directory 3. Write Javascript that takes these nine images and randomly rearranges them in a 3 x 3 grid. 4. Each cell in the grid will also have a checkbox. 5....
[5 pts] An element with no closing tag is called which of the following? an attribute...
[5 pts] An element with no closing tag is called which of the following? an attribute an empty element a Socratic element a hermit element [5 pts] <a href="#info">Click Here</a> The above HTML is an example of which of the following? An external link An internal link An anonymous function A source attribute [5 pts] Which of the following should be primarily responsible for the design and formatting of a Web page? CSS HTML JavaScript XML [5 pts]   The following:...