CYB 240 Module One Lab Worksheet

docx

School

Southern New Hampshire University *

*We aren’t endorsed by this school

Course

240

Subject

Computer Science

Date

Dec 6, 2023

Type

docx

Pages

4

Uploaded by SuperKoala931

Report
1 1-3 Lab Worksheet Warm-Up Chris Lawton Southern New Hampshire University CYB 230: Operating System Security Dr. Randy Arvay May 7, 2023
2 CYB 240 Module One Lab Worksheet Complete this worksheet by replacing the bracketed phrases in the Response column with the relevant information. Lab: Exploring HTML
3 Prompt Response In the lab section “Reviewing HTML From a Pentester’s Perspective,” Step 6 , provide a screenshot of the HTML code and login page before closing the window. There is a fundamental difference between HTML and xHTML. What rules were applied to xHTML that are not needed for HTML, and why were those rules put in place? Rules: <!DOCTYPE> is mandatory. The xmlns attribute in <html> is mandatory. <html>, <head>, <title>, and <body> are mandatory. Elements must always be properly nested. Elements must always be closed. Elements must always be in lowercase. Attribute names must always be in lowercase. Attribute values must always be quoted. Attribute minimization is forbidden. ( HTML Versus XHTML , n.d.) Explanation: The development of XHTML was for the purpose of providing a more extensive and flexible way to work with other data formats. XHTML also helps handle browsers errors much better than HTML.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
4 References HTML Versus XHTML . (n.d.). https://www.w3schools.com/html/html_xhtml.asp