INTERNET PROGRAMMING
- HTML stands for Hyper Text Markup Language
- HTML is a markup language
- A markup language is a set of markup tags
- The tags describes document content
- HTML documents contain HTML tags and
plain text
- HTML documents are also called web pages
Color on a webpage
Bgcolor:The bgcolor
attribute is used to set the background color of an HTML element. Bgcolor
is one of those attributes that has become deprecated with the implementation
of Cascading Style Sheets (see CSS
Backgrounds).
EXAMPLE
Just change the your background image name.gif with the actual image you want.
HTML Lists
- tag. Each list item starts with the
- tag.
- Coffee
- Milk
- Coffee
- Milk
- tag. Each list item starts with the
- tag.
- Coffee
- Milk
- Coffee
- Milk
- tag defines a
definition list.
- tag is used in
conjunction with
- (defines the item in the list) and
-
(describes the item in the list):
- Coffee
- - black hot drink
- Milk
- - white cold drink
Tag
|
Description
|
Defines an ordered list
|
|
Defines an unordered list
|
|
Defines a list item
|
|
Defines a definition list
|
|
Defines an item in a definition
list
|
|
Defines a description of an item
in a definition list
|
HTML Hyperlinks (Links)
HTML Link Syntax
A table is divided into rows (with the
Tag
|
Description
|
Defines a table
|
|
Defines a header cell in a table
|
|
Defines a row in a table
|
|
Defines a cell in a table
|
|
Defines a table caption
|
|
Specifies a group of one or more
columns in a table for formatting
|
|
Specifies column properties for
each column within a
|
|
Groups the header content in a
table
|
|
Groups the body content in a table
|
|
Groups the footer content in a
table
|
Month | Savings |
---|---|
January | $100 |
Attribute
|
Value
|
Description
|
left
center right |
Not supported in HTML5. Deprecated
in HTML 4.01. Specifies the alignment of a table according to surrounding
text
|
|
rgb(x,x,x)
#xxxxxx colorname |
Not supported in HTML5. Deprecated
in HTML 4.01. Specifies the background color for a table
|
|
1
"" |
Specifies whether the table cells
should have borders or not
|
|
pixels
|
Not supported in HTML5. Specifies
the space between the cell wall and the cell content
|
|
pixels
|
Not supported in HTML5. Specifies
the space between cells
|
|
void
above below hsides lhs rhs vsides box border |
Not supported in HTML5. Specifies
which parts of the outside borders that should be visible
|
|
none
groups rows cols all |
Not supported in HTML5. Specifies
which parts of the inside borders that should be visible
|
|
text
|
Not supported in HTML5. Specifies
a summary of the content of a table
|
|
pixels
% |
Not supported in HTML5. Specifies
the width of a table
|
Each in a
frameset
The The
The
·
Example
·
An HTML form with two input fields
and one submit button:
·
DHTML
Dynamic HTML, or DHTML, is an umbrella term for a collection of technologies used together to create interactive and animated web sites[1] by using a combination of a static markup language (such as HTML), a client-side scripting language (such as JavaScript), a presentation definition language (such as CSS), and the Document Object Model
CSS
Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation semantics (the look and formatting) of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can also be applied to any kind of XML document, including plain XML, SVG and XUL.
JAVASCRIPT LESSON:3
JavaScript Introduction
JavaScript is the most popular scripting
language in the world. It is the standard language of the web, and widely used
in servers, desktops, and mobile phones.avaScript Introduction
JavaScript is a Scripting Language
A scripting language is a lightweight programming language that supports the writing of scripts.
JavaScript was designed to add interactivity to HTML pages.
JavaScript is programming code that can be inserted into HTML pages to be executed by web browser.
Many HTML designers are not programmers, but JavaScript is a language with a very simple syntax. Almost anyone can put small "snippets" of JavaScript code into HTML pages.