HTML
SitePoint reference
Good reference for HTML, CSS, and JavaScript.
Inline versus block tags
Learn the difference between inline and block tags.
Forms in HTML
In this lesson, you learn that:
- Browsers send form data to Web servers along with URLs.
getattaches form data to a URL.postputs it in a separate HTTP header.
- URL encoding handles special characters in URLs.
- The basic attributes of
<form>areactionandmethod.
- The basic attributes of
<input>aretype,name, andsize.
- The basic attribute of
<button>istype.
PHP outputs HTML
- When a Web server gets a URL with a
.phpextension, it sends the file to the PHP interpreter.
- You embed PHP code in HTML pages.
- Most PHP code outputs HTML, which then gets sent to the browser for rendering.
Interactive tables - sorting
Learn how to make a table sortable. Users will be able to click on table columns to sort tables the way they want. You’ll use a jQuery plugin to do the work.
Basic tables
Learn to create a basic HTML table, and add a header and footer.
Horizontal navigation bars
Learn how to:
- Create horizontal nav bars with text.
- Position horizontal nav bars.
- Create horizontal nav bars with images and hover effects.
Vertical navigation bars
Learn how to:
- Create vertical nav bars with text.
- Position vertical nav bars.
- Create vertical nav bars with images.
- Create image nav bars with hover effects.
Making links
Learn:
- How to use the
<a>tag.
- How to create basic navigation bars.
- How to create a table of contents for a long page.