Web Development and Design Foundations with HTML5 (9th Edition) (What's New in Computer Science)
Web Development and Design Foundations with HTML5 (9th Edition) (What's New in Computer Science)
9th Edition
ISBN: 9780134801148
Author: Terry Felke-Morris
Publisher: PEARSON
Question
Book Icon
Chapter 9, Problem 5HOE
Program Plan Intro

Program Plan:

  • Include the HTML tag using <HTML>.
    • Include the header tag using <head>.
      • Include the title on the webpage using <title> tag.
    • Close the header tag using </head>.
    • Open the style tag using<style>.
      • Include the alignment for form tag.
        • Include the alignment for label tag.
        • Includes the alignment for legend and fieldset tags.
        • It also includes alignment of textarea.
        • Also includes alignment of body tag, holder tag, and footer tag.
    • Close the style tag using </style>.
    • Open the body of the web page using <body> tag.
      • Includes the alignment of the div tag using <div>.
        • Music Survey is set as header using <h1> tag.
        • Open the form tag using <form> using the post method.
        • Includes alignment of label tag using <label>
        • It takes the input for name, email, birthdate.
        • Create submit and reset buttons.
        • Close the form tag using </form>.
        • It takes the input for name and email.
        • Open fieldset tag using <fieldset>.
        • Open legend tag using <legend>.
        • Take input in the form of checkbox by using input type= “checkbox”.
        • Close the fieldset and legend tags using </fieldset> and </label>.
        • Open fieldset tag using <fieldset>.
        • Open legend tag using <legend>.
        • Take input in the form of radio button by using input type= “radio”.
        • Close the fieldset and legend tags using </fieldset> and </label>.
        • Create a select list using <select> tag.
        • Alignment for text area using <textarea> tag.
        • Close the div tag using </div>.
        • Open the div tag using <div>
        • Include the email link attachment.
        • Close the div tag using </div> tag.
    • Close the body using </body> tag.
  • Close the file using </html> tag.

Blurred answer
Students have asked these similar questions
Write the code necesary in javascript to create a webpage that contains a contact form like the one in the attatched picture. To create and style this form, copy the following HTML and CSS code exactly as follows: HTML: <form><label for="myName">Name:</label> <input type="text" name="myName" id="myName"> <label for="myEmail">E-mail:</label> <input type="text" name="myEmail" id="myEmail"› <label for="myComments">Comments:</label> <textarea name="myComments" id="myComments" rows="2" cols="20"></textarea> <input id="mySubmit" type="submit" value="Submit"› </form> CSS: form { background-color:#eaeaea; font-family: Arial, sans-serif; padding: lOpx; } label { float: left;width: 100px;clear: left; text-align: right; padding-right: lOpx;margin-top: lOpx; }input, textarea { margin-top: lOpx;display: block; }#mySubmit { margin-left: 110px; }
HereWrite the code necesary in javascript to create a webpage that contains a contact form like the one in the attatched picture. To create and style this form, copy the following HTML and CSS code exactly as follows: HTML: <form><label for="myName">Name:</label><input type="text" name="myName" id="myName"><label for="myEmail">E-mail:</label><input type="text" name="myEmail" id="myEmail"›<label for="myComments">Comments:</label><textarea name="myComments" id="myComments" rows="2" cols="20"></textarea><input id="mySubmit" type="submit" value="Submit"›</form> CSS: form { background-color:#eaeaea;font-family: Arial, sans-serif;padding: lOpx; }label { float: left;width: 100px;clear: left;text-align: right;padding-right: lOpx;margin-top: lOpx; }input, textarea { margin-top: lOpx;display: block; }#mySubmit { margin-left: 110px; }.
The following JavaScript code displays content inside a page. The content comes froman untrusted place. If the content, which is supposed to be data only, contains JavaScriptcode, can the code be executed? Why? const iframe = document.createElement("iframe");iframe.srcdoc = content;iframe.sandbox = "";document.body.appendChild(iframe);
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education