Layer arranged at the top of the code is displayed before the layer which is located in the code below. This logic makes it easy to predict the result of the output elements and manage them.
There are many more entities , but these four are the most important because they represent characters that have a special meaning in HTML.
HTML interprets the less-than, greater-than, ampersand and quote symbols as tag delimiters.
> <!-- denotes the greater than sign (>) -->
< <!-- denotes the less than sign (<) -->
& <!-- denotes the ampersand (&) -->
" <!-- denotes double quote (") -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<table border="1">
<tr>
<td>Table cell 1</td>
<td>Table cell 2</td>
</tr>
</table>
</body>
</html>
In HTML, you create tables using the table tag, in conjunction with the tr and td tags. Although there are other tags for creating tables, these are the basics for creating a table in HTML.
Many tables, particularly those with tabular data, have a header row or column. In HTML, you can use the th tag.
You can use the colspan attribute to make a cell span multiple columns.
Similar to what colspan is for columns, rowspan enables you to make a cell span multiple rows.
Tables can be divided into three portions: a header, a body, and a foot. The head and foot are rather similar to headers and footers in a word-processed document that remain the same for every page, while the body is the main content holder of the table.
The three elements for separating the head, body, and foot of a table are:
An iframe is used to display a web page within a web page.
Syntax
<iframe src="URL"></iframe>
The src attribute specifies the URL (web address) of the iframe page.
Set Height and Width
<iframe src="demo_iframe.htm" width="200" height="200"></iframe>
Use iframe as a Target for a Link
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://www.w3schools.com" target="iframe_a">W3Schools.com</a></p>
Create the following page using table layout
When you click "Menu 1"
Page with additional info is shown
When you click "Page 2"
Page with info about page 2 is shown
When you click "Page 1"
Page with info about page 1 is shown