Notes in Tle
Notes in Tle
-
<table> </table
tag that defines an HTML Table
<tr> </tr>
tag that defines a row in an HTML table.
A <tr> element contains one or more <td> elements.
<td> </td>
tag that defines a standard data cell in an HTML table.
The text in <td> elements are regular and left-aligned by
default.
<th> </th>
replaces the <td> tag, which is used to represent the
actual data cell.
Unordered List
<ul> </ul>
a collection of related items that have no special order
or sequence.
▪ <ul type=”square”>
Sets the list item marker to a square
Ordered List
<ol> </ol>
An ordered list.
This will use different schemes of numbers to list your items.
Hyperlink Attribute
<href>
Specifies the URL of the page the link goes to
Target Attribute
This attribute is used to specify the location where the
linked document is opened.
o Frameset Attributes
<frameset> </frameset>
collection of frames in the browser window
Use asterisk.
E.g. <frameset cols/rows = "30%, *, 30%">
This will take the remaining percentage for creating a
vertical frame.
<frame>
For content/data
Defines how to divide the window into frames.
<frameborder>
This specifies whether or not the borders of that frame are
shown;
values either 1 (yes) or 0 (no).
<noresize>
By default, you can resize any frame by clicking and
dragging on the borders of a frame. This attribute do not
allow adjustments.
- Inline Frame Attributes
The <iframe> tag defines a rectangular region within the
document in which the browser can display a separate
document, including scrollbars and borders.
<iframe src>
Attribute that is used to specify the URL of the document
that occupies the IFrame.