Introduction to HTML5 coursera Quiz Answers week 3

Introduction to HTML5 coursera Quiz Answers week 3



Introduction to HTML5 
coursera Quiz Answers week 3


Hosting and Validation


Q1) What validation error will this code produce?

<!DOCTYPE html>

<html lang="en">

<head>

   <meta charset="UTF-8">

   <title>Testing</title>

</head>

<body>

   <p>

     <h2>Validate me!</h2>

   </p>

</body>

</html>


  • No p element in scope but a p end tag seen.
  • No error
  • Start tag seen without seeing a doctype first. Expected e.g. <!DOCTYPE html>.


Q2) What validation error will this code produce?

<!DOCTYPE html>

<html lang="en">

<head></head>

<body>

   <p> Validate me! </p>

</body>

</html>


  • End of file seen when expecting text or an end tag.
  • No error.
  • Element head is missing a required instance of child element title.



Q3) To access your cPanel account, you need …

  • a username and password from your hosting server
  • the username and password for your computer
  • the port number for your account


Q4) To publish your site online you need

  • an account through work or school
  • a client
  • a domain name and hosting service


Q5) To use ftp software to transfer files you will typically need to know your site’s ftp address or ip address.

  • True
  • False


 

-----------------------------------------------------------------------------------------------------------------------------------------

Introduction to HTML5



-----------------------------------------------------------------------------------------------------------------------------------------

Post a Comment

2 Comments