CSS

CSS for Beginners – Lesson 1: The basics

Hi folks! If you haven’t read the introduction to HTML I advice you to do so here. So we have this code <html> <head> <title>My first HTML tutorial</title> <meta name=”description” content=”Here is the best place to learn HTML” /> <meta name=”keywords” content=”html,tutorial,beginners” /> <meta name=”robots” content=”INDEX,FOLLOW” /> <meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ /> </head> <body> <div ...

Problems using UTF-8 on your website?

Is your website in other language than english? Does your website contain characters that are not in the english alphabet? Then you really need your website to accept UTF-8 encoding. Of course, there are more standards (ISO 8859-1, ISO 8859-2 etc), but UTF-8 gets all the characters you need. UTF-8 and HTML – In order ...