HyperText Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser.
HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like
<html>
), within the web page content. HTML tags most commonly come in pairs like <h1>
and </h1>
, although some tags represent empty elements and so are unpaired, for example <img>
. The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, further tags, comments and other types of text-based content.The purpose of a web browser is to read HTML documents and compose them into visible or audible web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page.
HTML elements form the building blocks of all websites. HTML allows images and objects to be embedded and can be used to create interactive forms. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. It can embed scripts written in languages such as JavaScript which affect the behavior of HTML web pages.
Web browsers can also refer to Cascading Style Sheets (CSS) to define the appearance and layout of text and other material. The W3C, maintainer of both the HTML and the CSS standards, encourages the use of CSS over explicit presentational HTML.[1]
NOW, WE WILL TEACH YOU THREE BASIC HTML PROGRAM :
TABLE
First Name
|
Last Name
|
Points
|
Jill
|
Smith
|
50
|
Eve
|
Jackson
|
94
|
John
|
Doe
|
80
|
Adam
|
Johnson
|
67
|
Try it Yourself - Examples
Tables
How to create tables in an HTML document.
How to create tables in an HTML document.
(You can find more examples at the bottom of this page).
HTML Tables
Tables are defined with the <table> tag.
A table is divided into rows (with the <tr> tag), and each row is
divided into data cells (with the <td> tag). td stands for "table
data," and holds the content of a data cell. A <td> tag can contain
text, links, images, lists, forms, other tables, etc.
Table Example
<table border="1">
< tr>
< td>row 1, cell 1</td>
< td>row 1, cell 2</td>
< /tr>
< tr>
< td>row 2, cell 1</td>
< td>row 2, cell 2</td>
< /tr>
< /table>
< tr>
< td>row 1, cell 1</td>
< td>row 1, cell 2</td>
< /tr>
< tr>
< td>row 2, cell 1</td>
< td>row 2, cell 2</td>
< /tr>
< /table>
How the HTML code above looks in a browser:
row 1, cell 1
|
row 1, cell 2
|
row 2, cell 1
|
row 2, cell 2
|
HTML Tables and the Border Attribute
If you do not specify a border attribute, the table will be displayed
without borders. Sometimes this can be useful, but most of the time, we want
the borders to show.
To display a table with borders, specify the border attribute:
<table border="1">
< tr>
< td>Row 1, cell 1</td>
< td>Row 1, cell 2</td>
< /tr>
< /table>
< tr>
< td>Row 1, cell 1</td>
< td>Row 1, cell 2</td>
< /tr>
< /table>
HTML Table Headers
Header information in a table are defined with the <th> tag.
All major browsers display the text in the <th> element as bold
and centered.
<table border="1">
< tr>
< th>Header 1</th>
< th>Header 2</th>
< /tr>
< tr>
< td>row 1, cell 1</td>
< td>row 1, cell 2</td>
< /tr>
< tr>
< td>row 2, cell 2</td>
< /tr>
< /table>
< tr>
< th>Header 1</th>
< th>Header 2</th>
< /tr>
< tr>
< td>row 1, cell 1</td>
< td>row 1, cell 2</td>
< /tr>
< tr>
< td>row 2, cell 2</td>
< /tr>
< /table>
How the HTML code above looks in your browser:
Header 1
|
Header 2
|
row 1, cell 1
|
row 1, cell 2
|
row 2, cell 1
|
row 2, cell 2
|
More Examples
Tables without borders
How to create tables without borders.
How to create tables without borders.
Table headers
How to create table headers.
How to create table headers.
Table with a caption
How to add a caption to a table.
How to add a caption to a table.
Table cells that span more than one row/column
How to define table cells that span more than one row or one column.
How to define table cells that span more than one row or one column.
Tags inside a table
How to display elements inside other elements.
How to display elements inside other elements.
Cell padding
How to use cellpadding to create more white space between the cell content and its borders.
How to use cellpadding to create more white space between the cell content and its borders.
Cell spacing
How to use cellspacing to increase the distance between the cells.
How to use cellspacing to increase the distance between the cells.
HTML Table Tags
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 <colgroup> element
|
|
Groups the header content in a table
|
|
Groups the body content in a table
|
|
IMAGE
An image:
Note that the syntax of inserting a moving image is no different from a non-moving image.
In HTML, images are defined with the <img> tag.
The <img> tag is empty, which means that it contains
attributes only, and has no closing tag.
To display an image on a page, you need to use the src attribute. Src
stands for "source". The value of the src attribute is the URL of the
image you want to display.
Syntax for defining an image:
<img src="url" alt="some_text">
The URL points to the location where the image is stored. named
"boat.gif", located in the "images" directory on
"www.w3schools.com" has the URL:
http://www.w3schools.com/images/boat.gif.
The browser displays the image where the <img> tag occurs in the
document. If you put an image tag between two paragraphs, the browser shows the
first paragraph, then the image, and then the second paragraph.
HTML Images - The Alt Attribute
The required alt attribute specifies an alternate text for an image, if
the image cannot be displayed.
The value of the alt attribute is an author-defined text:
<img src="smiley.gif" alt="Smiley face">
The alt attribute provides alternative information for an image if a
user for some reason cannot view it (because of slow connection, an error in
the src attribute, or if the user uses a screen reader).
HTML Images - Set Height and Width of an Image
The height and width attributes are used to specify the height and width
of an image.
The attribute values are specified in pixels by default:
<img src="smiley.gif" alt="Smiley face"
width="32" height="32">
Tip: It is a good practice to
specify both the height and width attributes for an image. If these attributes
are set, the space required for the image is reserved when the page is loaded.
However, without these attributes, the browser does not know the size of the
image. The effect will be that the page layout will change during loading
(while the images load).
Basic Notes - Useful Tips
Note: If an HTML file contains
ten images - eleven files are required to display the page right. Loading
images takes time, so my best advice is: Use images carefully.
Note: When a web page is loaded,
it is the browser, at that moment, that actually gets the image from a web
server and inserts it into the page. Therefore, make sure that the images
actually stay in the same spot in relation to the web page, otherwise your
visitors will get a broken link icon. The broken link icon is shown if the
browser cannot find the image.
More Examples
Aligning images
How to align an image within the text.
How to align an image within the text.
Let an image float to the left and to the right
How to let an image float to the left or right of a paragraph.
How to let an image float to the left or right of a paragraph.
Make a hyperlink of an image
How to use an image as a link.
How to use an image as a link.
Create an image map
How to create an image map, with clickable regions. Each region is a hyperlink.
How to create an image map, with clickable regions. Each region is a hyperlink.
HTML Image Tags
Tag
|
Description
|
Defines an image
|
|
Defines an image-map
|
|
Defines a clickable area inside an
image-map
|
LINKS
HTML Hyperlinks (Links)
The HTML <a> tag defines a hyperlink.
A hyperlink (or link) is a word, group of words, or image that you can
click on to jump to another document.
When you move the cursor over a link in a Web page, the arrow will turn
into a little hand.
The most important attribute of the <a> element is the href
attribute, which indicates the link’s destination.
By default, links will appear as follows in all browsers:
- An unvisited
link is underlined and blue
- A visited
link is underlined and purple
- An active
link is underlined and red
HTML Link Syntax
The HTML code for a link is simple. It looks like this:
<a href="url">Link text</a>
The href attribute specifies the destination of a link.
Example
<a href="http://www.w3schools.com/">Visit
W3Schools</a>
which will display like this: Visit
W3Schools
Clicking on this hyperlink will send the user to W3Schools' homepage.
Tip: The "Link text"
doesn't have to be text. It can be an image or any other HTML element.
HTML Links - The target Attribute
The target attribute specifies where to open the linked document.
The example below will open the linked document in a new browser window
or a new tab:
Example
<a href="http://www.w3schools.com/"
target="_blank">Visit W3Schools!</a>
HTML Links - The id Attribute
The id attribute can be used to create a bookmark inside an HTML
document.
Tip: Bookmarks are not displayed
in any special way. They are invisible to the reader.
Example
An anchor with an id inside an HTML document:
<a id="tips">Useful Tips Section</a>
Create a link to the "Useful Tips Section" inside the same
document:
<a href="#tips">Visit the Useful Tips Section</a>
Or, create a link to the "Useful Tips Section" from another
page:
<a href="http://www.w3schools.com/html_links.htm#tips">
Visit the Useful Tips Section</a>
Visit the Useful Tips Section</a>
Basic Notes - Useful Tips
Note: Always add a trailing slash
to subfolder references. If you link like this:
href="http://www.w3schools.com/html", you will generate two requests
to the server, the server will first add a slash to the address, and then
create a new request like this: href="http://www.w3schools.com/html/".
More Examples
An image as a link
How to use an image as a link.
How to use an image as a link.
Link to a location on the same page
How to link to a bookmark.
How to link to a bookmark.
Break out of a frame
How to break out of a frame (if your site is locked in a frame).
How to break out of a frame (if your site is locked in a frame).
Create a mailto link
How to link to a mail message (will only work if you have mail installed).
How to link to a mail message (will only work if you have mail installed).
Create a mailto link 2
Another mailto link.
Another mailto link.
HTML Link Tags
Tag
|
Description
|
Defines a hyperlink
|
Authors
Faiq
Halim
IbnuZamri
All of them still studying at local university in Malaysia.Together they write because of one mission...to share knowledge to all of people.
0 comments:
Post a Comment