CSS & HTML Coding
CSS stands for Cascading Style Sheets and HTML stands for Hyper Text Mark-up Language. These are the core of any website. HTML offers the structure and CSS offers the Style. CSS Web Design is core to making a site look and feel right. You can develop a website with good quality content but CSS brings the look together and CSS can be used to make a site look many completely different ways. CSS controls is the preferred way to control all elements width, height, color, fonts, opacity, positioning and much more.
You can check the CSS rules for any site easily by either look at the source and access the CSS style sheet that will be located at the top of the site in a link of code similar to this:
<link rel="stylesheet" type="text/css" href="/css/styles.css"/>
Or otherwise you can use FireBug in Firefox or Chrome to inspect individual elements and the styles applied to them. The great thing about CSS is its power and the fact that there isn't that much to learn here. Once you comfortable with a couple of dozen rules the rest will follow in time. You can always you a CSS Layout Generator if you rather but it's always preferable to understand how to do it yourself. On this site you will find great information on CSS Web Design. People sometimes ask about CSS Servers but the fast is CSS is hosted with your website on any standard Hosting Package. There is no need for a dedicated CSS Server.c
HTML Code is really the core of Web Development and is the best place to start from if you are skilling up in Web Page Building. HTML Web Design is relatively easy to learn because there aren't that mean tags available. You can do many things with HTML Web Design from HTML Emails, HTML Meta Tags and general HTML Meta. With a HTML Email you design an email to appear like a Web HTML Page in an Email Reader like Microsoft Outlook. HTML Meta Tags are a required way to let the Search Engines know about your website and what the content contains. Be sure to include the following tags with content that is relevant to your site to assist your listing in the Search Engines.
HTML Meta Tags:
<head>
<meta name="description" content="My Website Description"/>
<meta name="description" content="My Website Description"/>
<meta name="keywords" content="My Website Keywords"/>
<meta name="author" content="My Name"/>
<meta http-equiv="content-type" content="text/html\;charset=UTF-8"/>
</head>
