W3 Updates, HTML, XHTML, CSS, JavaScript, AJAX, XML, PHP, Ruby, PHP Frameworks

HTML Paragraphs

October 23rd, 2011
Examples

HTML documents are divided into paragraphs. HTML Paragraphs Paragraphs are defined with the <p> tag. Example <p>This is a paragraph</p> <p>This is another paragraph</p> Try it yourself » Note: Browsers automatically add an empty line before and after a paragraph. Don’t Forget the End Tag Most browsers will display HTML correctly even if you forget the [...]

Read More >>

Author: Categories: CSS Tags:

HTML Text Formatting

October 23rd, 2011
Remark

HTML Text Formatting This text is bold This text is big This text is italic This is computer output This is subscript and superscript Try it yourself » HTML Formatting Tags HTML uses tags like <b> and <i> for formatting output, like bold or italic text. These HTML tags are called formatting tags (look at the bottom of this page for a [...]

Read More >>

Author: Categories: HTML Tags:

HTML Fonts

October 23rd, 2011

The HTML <font> Tag Should NOT be Used The <font> tag is deprecated in HTML 4, and removed from HTML5. The World Wide Web Consortium (W3C) has removed the <font> tag from its recommendations. In HTML 4, style sheets (CSS) should be used to define the layout and display properties for many HTML elements. The example [...]

Read More >>

Author: Categories: HTML Tags:

HTML Elements

September 30th, 2011

HTML documents are defined by HTML elements. HTML Elements 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 [...]

Read More >>

Author: Categories: HTML Tags:

HTML Basic – 4 Examples

September 30th, 2011

Don’t worry if the examples use tags you have not learned. You will learn about them in the next chapters. HTML Headings HTML headings are defined with the <h1> to <h6> tags. Example <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3> Try it yourself »   HTML Paragraphs HTML paragraphs are [...]

Read More >>

Author: Categories: HTML Tags: ,

HTML – Getting Started

September 30th, 2011

What You Need You don’t need any tools to learn HTML at W3Schools. You don’t need an HTML editor You don’t need a web server You don’t need a web site Editing HTML HTML can be written and edited using many different editors like Dreamweaver and Visual Studio. However, in this tutorial we use a [...]

Read More >>

Author: Categories: HTML Tags: ,

HTML Tutorial

September 30th, 2011
W3Schools Certification

ith HTML you can create your own Web site. This tutorial teaches you everything about HTML. HTML is easy to learn – You will enjoy it. Examples in Each Chapter This HTML tutorial contains hundreds of HTML examples. With our online HTML editor, you can edit the HTML, and click on a button to view [...]

Read More >>

Author: Categories: HTML Tags:

HTML Introduction

September 30th, 2011

Example <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Try it yourself » What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of markup tags HTML uses markup tags to describe web pages HTML Tags [...]

Read More >>

Author: Categories: HTML Tags:

ASP Forms and User Input

September 4th, 2011

User Input The Request object can be used to retrieve user information from forms. Example HTML form <form method=”get” action=”simpleform.asp”> First Name: <input type=”text” name=”fname” /><br /> Last Name: <input type=”text” name=”lname” /><br /><br /> <input type=”submit” value=”Submit” /> </form> User input can be retrieved with the Request.QueryString or Request.Form command. Request.QueryString The Request.QueryString command [...]

Read More >>

Author: Categories: ASP Tags: ,

ASP Cookies

September 4th, 2011

What is a Cookie? A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user’s computer. Each time the same computer requests a page with a browser, it will send the cookie too. With ASP, you can both create and retrieve cookie values. How [...]

Read More >>

Author: Categories: ASP Tags: