Block and Inline HTML Elements
There are two main types of html elements, block and inline. A block element starts and ends with an inherent line break. An inline element starts at a position defined by its sequence in the code. More ...
Using del and ins Tags to Mark Up Editing on HTML Page
As society moves away from printed documents and towards online webpages, a way is needed to mark deletions and insertions on html pages similar to was done on paper documents. That's where the del and ins html tags come in. More ...
Web Page Template
Every webpage starts out with a basic set of tags, doctype, html, head, meta, title, and body.This article provides yo uwith ahe template for a basic webpage. More ...
Using col and colgroup to Apply Attributes to a Table Column
You could add html attributes to each cell in a table column, however, with a large table this might be tedious, and it adds unnecessary code. The col tag allows you to define attributes for one or more columns in a table. The colgroup tag allows you apply attributes to a group of columns. More ...
What is HTML?
The first HTML was used in 1989 by the physicist Tim Berners-Lee working at the CERN particle physics laboratory in Geneva Switzerland. It was used to share documents. More ...
Webpage DOCTYPE Declarations Explained
DOCTYPE is a declaration that should appear as the first line in your webpage code. It defines the standard to which your webpage is coded, and provides information to the browser as to how the code should be interpreted. Make sure your webpage's doctype matches it's coding standard. More ...
HTML center Tag
The HTML center tag is used to center an element on the webpage The center tag is deprecated, which means it may not be supported in future browsers. The prefered way to define visual layout today is to use style rules. More ...
Introduction to HTML
A Web server sends the response to the client browser with a set of instructions written in HTML (HyperText Markup Language). HTML consists of tags that define the structure of a web page. It is the standard markup language for documents to be displayed in a web browser. More ...
HTML Frames Basics
A frame creates a separate pane within the browser window. A frame can contain its own webpage, or it can provide a different view of the same page in another frame in the same browser window. More ...
Text Input Box Basics
The most common way to receive information from a visitor to your website is to let them type it into a text box. In this article you learn the basics of using text boxes on your webpages. More ...
HTML Numbered or Ordered List
There are three kinds of html lists; The unordered list, the definition list, and the ordered
list, which in which every item is preceded by a number or letter. More ...
Adding Space Around an Image
With the html hspace and vspace attributes you can control the space around an image. Although these attributes were deprecated in HTML 4.01, they still work in all modern browsers. More ...
