Tuesday, May 11, 2010

HTML Editors and Software for Web Development

Everything from HTML editor and FTP client software and database applications. Software and tools for web developers need to create websites. Web software tools, HTML editors, text editors, WYSIWYG editors and more.

Free and Inexpensive Web Design Software Pick of the Week:
There are many different tools out there for Web designers. The publishers are the tip of an iceberg. There are CSS editors, FTP clients, Web Analytics software, CMS, image map editors, databases, graphics, and much more. This list has some of the best free tools for web designers and is updated each week.

Before starting a web site

Build a website on the World Wide Web requires more than just learning the HTML language and beginners. Need a place to save your Web pages, a field for your business, and understand the legal issues around web pages and websites.

Start a New Website Checklist:
It is true that if you're in business, you need a website. Yet many small businesses are reluctant to come online because of time or cost they deem necessary. This list of requirements will help you make the best site you can without spending much money or time.

Basic Tools for Web Design
Most of the tools needed to build a website and operating system. In fact, there are only three software products that you need. This article explains where to find the necessary tools for Windows, Macintosh and Linux.

Flash video

Flash video - not a good idea

In an interesting interview, apparently more people out than flash - at least on video. 
Tech Radar has had an interview with Philip Groening ¸ nvold, product analyst Opera. And he said-

Flash is not its purpose and its conditions, as well as [Microsoft] Silverlight and others, especially the dynamic content.
But the container flash video does not make much sense for the CPU, WiFi, battery, etc. - Cook [an] egg equipment, you began to blink, and there in September.

HTML5 video has a clear advantage over the Flash video as well as being compatible, has a better use of resources, because you are using the browser's native support to do the job. So unless you want your customers to cook in their laptops (may be useful for cooking sites) video HTML 5 is a better option.

Sunday, May 2, 2010

CSS Syntax

CSS Syntax


Style rules are comprised of two things, the selector and the declaration.

• selector - The HTML tag that will be affected by the rule

• declaration - The specific style calls that will affect the selector

The complete syntax for a style rule is:

selector {property : value;}

So, to set all bold text to be the color red, you would write:

b {color: red;}

One of the things that makes CSS so easy to use, is that you can group together components that you would like to have the same style. For example, if you wanted all the H1, H2 and bold text red, you could write:

b {color: red;}
h1 {color: red;}
h2 {color: red;}

But with grouping, you put them all on the same line:

b, h1, h2 {color: red;}

You can also group together rules (separated by a semi-colon (;) ). For example, to make all h3 text blue and Arial font, you would write:

h3 {
font-family: Arial;
color: blue;
}

By convention, we put separate rules on separate lines, but this is not required.

Cascading Style Sheets (CSS)

Cascading Style Sheets or CSS allow you to control the layout and look of your page easily. CSS tags or properties are easy to use and affect the look and feel or style of your pages. Learn how to use CSS instead of older technology. 

Style sheets are a very powerful tool for the Web site developer. They give you the chance to be completely consistent with the look and feel of your pages, while giving you much more control over the layout and design than straight HTML ever did.

Cascading Style Sheets (CSS) are just now starting to be widely used among browsers and Web developers are learning to be more comfortable with them. Those of you who use HomeSite 4.0 know that they are eventually going to take the place of tags such as , which have been deprecated in HTML 4.0.
There are three parts to CSS: the styles, their placement, and the fact that they can cascade.
The Styles
One of the more common styles applied to HTML is the color and size of text. In HTML 3.2 you would create a blue H4 headline like this:


a blue headline



Which would look like:
a blue headline
However, there was no way to ensure that all H4 headlines were blue except by typing in the font tag before and after each one. With CSS, you simply declare that all H4 headlines are blue, and for all pages that use that style sheet and all elements that use that style, they will be blue:
H4 { color: #0000ff; }

another blue headline

Which would look like:
another blue headline