Difference between revisions of "Courses/single-page-portfolio"

From Publication Station
Line 8: Line 8:
==== Doctype ====
==== Doctype ====
Start with declaring the doctype. This tells the browser that the document will be written in HTML.
Start with declaring the doctype. This tells the browser that the document will be written in HTML.
<nowiki><!DOCTYPE html></nowiki>
<nowiki><!DOCTYPE html></nowiki>



Revision as of 07:22, 19 June 2015

Getting a headstart

To get a headstart and leave everybody in the dust, follow the HTML & CSS courses on Codecademy [1] first.

A step-by-step guide to the HTML

First you will need to define the structure and the content of the site. This is what HTML is made for.

Doctype

Start with declaring the doctype. This tells the browser that the document will be written in HTML.

<!DOCTYPE html>

Doctype

Start with declaring the doctype. This tells the browser that the document will be written in HTML. <!DOCTYPE html>