-
Front End Engineering, May 2015
-
Introduction
-
1. Class Notes
-
1.1.
Mon, May 4 (1.1)
-
1.2. Tue, May 5 (1.2)
-
1.3. Wed, May 6 (1.3)
-
1.4. Thu, May 7 (1.4)
-
1.5. Fri, May 8 (1.5)
-
1.6. Mon, May 11 (2.1)
-
1.7. Tue, May 12 (2.2)
-
1.8. Wed, May 13 (2.3)
-
1.9. Mon, May 18 (3.1)
-
1.10. Tue, May 26 (4.2)
-
1.11. Wed, May 27 (4.3)
-
1.12. Thu, May 28 (4.4)
-
1.13. Fri, May 29 (4.5)
-
1.14. Mon, June 1 (5.1)
-
1.15. Tue, June 2 (5.2)
-
1.16. Wed, June 3 (5.3)
-
1.17. Thu, June 4 (5.4)
-
1.18. Mon, June 8 (6.1)
-
1.19. Wed, July 1 (9.1)
-
1.20. Thu, July 16 (11.4)
-
1.21. Mon, July 20 (12.1)
-
2.
Assignments
-
3.
Final Project Requirements
-
4.
Tentative Schedule
-
5.
Course Information
-
6.
Policies
-
7.
Contact
-
8.
Prework
Standard HTML
- HTML5 is the current HTML standard
- The doctype tells the browser what version of HTML you're using
- The HTML standard is a "living standard", which means that the standard will
change to incorporate new features and updates.
- The
<meta>
tag in the <head>
element tells the browser additional
information about a web page such as the content type and character encoding.
- The charset attribute of the
<meta>
tag tells the browser the character
encoding that is used for the web page.
- Most web pages use the utf-8 encoding for HTML files, and for the
<meta>
tag
charset attribute.
- The validator at http://html5.validator.nu is a free online service that
checks pages for compliance with standards.