Determining how much a web site should cost is one of the most frequently asked but rarely answered questions in the web design world. Even now, with millions of web sites online, there exists no magic formula for calculating either the cost of a new web site or the cost of a redesign. For this [...]
Archive for the ‘HTML’ Category
How Much Should a Web Site Cost?
Posted: January 31, 2011 in CSS, HTML, JQUERY Reference, mysql, Php, Portfolio, Programming Language, Scripts, sqlTags: Cost, Costing, database, Maintenance Cost, mysql, Php, sql, Website Cost
Extensive Hypertext Markup Language or XHTML aims to replace HTML. XHTML is similar to HTML but is considered to be cleaner and more concise than HTML. XHTML is also known as HTML but acts as an XML(Extensible Markup Language) application. Moreover, all web servers support it. XHTML consists of all the elements in HTML combined [...]
Now that you know HTML, here are some things to know about XHTML: XHTML elements must be properly nested. The following code is allowed in HTML but not in XHTML: <b><i>This is coll!</b></i> Always keep in mind that whatever comes first must be closed last. The following code is accepted in XHTML. <b><i>This is cool! [...]
The table elements allows the user to present tets. Images and other details in a tabular form with customized rows, columns and other formatting styles. Tables are very useful layout tools. Syntax is shown below. <table align=”center” background = “URL” bgcolor= “color name / value ” border = “integer pixels” bordercolor = “color name / [...]
Core HTML Elements
Posted: January 24, 2011 in HTMLTags: core html, html, hypertext markup protocol
One of the most useful attributes is the align attribute. As you can see the code as follow <html> <head> <title>Title of the page</title> </head> <body> <h1 align=left>Heading aligned in the left </h1> <h1 align=center>Heading aligned in the center</h1> <h1 align=right>Heading aligned in the right</h1> </body> </html> Output: Heading aligned in the left Heading aligned [...]
An HTML element is everything from the start tag to the end tag: Start tag * Element content End tag * <p> This is a paragraph </p> <a href=”default.htm” > This is a link </a> <br /> * The start tag is often called the opening tag. The end tag is often called the closing [...]
HTML basic examples
Posted: December 23, 2010 in HTML, Programming LanguageTags: examples, html basic, html example
You learn how many possible code’s are good in html. Maybe if you are newly in developing web. Here are start in coding.: Sample Code: Simple Heading: HTML headings are defined with the <h1> to <h6> tags. <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3> HTML Paragraphs HTML paragraphs are defined [...]
HTML Tutorial Basic
Posted: December 23, 2010 in HTML, Programming LanguageTags: basic, html, html tutorial, tutorial
HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. A markup language is a set of markup tags, and HTML uses markup tags to describe web pages. I’m using this script for using a template. Open start: all programs -> accessories -> notepad OR if you have dreamweaver go [...]