IsaKiko / D3-visualising-data

Lesson plans for teaching the basics of HTML, CSS, SVG, JSON, and JS (primarily D3.js), in order to create browser-based data visualisations.
http://isakiko.github.io/D3-visualising-data/
Other
35 stars 35 forks source link

Make HTML examples valid #33

Closed rgaiacs closed 8 years ago

rgaiacs commented 8 years ago

On 01-html.md we have

<!DOCTYPE html>
<html>
    --> Everything goes in here <--
</html> 

I suggest to replace it with

<!DOCTYPE html>
<html>
    <!-- Everything goes in here -->
</html> 

That is a valid HTML with the standard syntax for comments.

IsaKiko commented 8 years ago

sounds good. thanks!