udacity / frontend-grading-engine

Providing immediate feedback for front-end code
MIT License
132 stars 172 forks source link

Udacity feedback: FEWD Google Challenge Lesson 3: HTML Syntax Problem Set Make a List Solution is Incorrect #50

Open vzhz opened 6 years ago

vzhz commented 6 years ago

The instructions ask for an unordered list but the solution shows an ordered list.

Instructions I want you to: (Look! Another unordered list!) Add an unordered list element with three child elements (one each for HTML, CSS, and JavaScript).

Correct answer `<!DOCTYPE html>

Create an unordered list! Make a list of the three web languages: HTML, CSS and JavaScript.

` Provided solution `

Any time you see a sequence of similar objects in a web site, it's probably a list. That goes for lists of articles on your favorite news app as well as things like videos on YouTube or Netflix.

  1. HTML
  2. CSS
  3. JavaScript
` Thank you!