Category Archives: Web Design

Steps I do to create a website for myself without a CMS.

1. Brainstorming The first thing I do is a brainstorming session. I think of the features the website will have, write them down. Then I ask friends, they could have good ideas too. 2. Sketching I get a piece of an A4 paper, a pencil, and begin to sketch the layout for the website. Sometimes […]

Posted in Web Design | 1 Comment

DOCTYPE!’s

HTML 4.01 Strict, Transitional, Frameset <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> XHTML 1.0 Strict, Transitional, Frameset <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 […]

Posted in Web Design | Comments closed

Make a linkable div

A div can be made into a link very simple using javascript using this code: <div onclick="location.href='http://www.domain.com';" style="cursor:pointer;">CLICK ME</div> Here everything that is inside this div will be clickable and will poing to http://www.domain.com. Using cursor: pointer dhe mause will change when it is over the div, just like in a real link.

Posted in Web Design | Leave a comment