24 Computer -- Web Technology I

What do you understand by the terms, "Website", "Web Page" and "Web Browser"?

What do you understand by the terms, "Website", "Web Page" and "Web Browser"?

Website

A website is a set of web pages that relate to each other which is linked by hyperlinks. Each website has its address known as URL (Uniform Resource Locator). All the websites on the internet form the World Wide Web (www.).


Web page

A web page is a hypertext document that can be seen from a web browser. If a web page is linked to other web pages then it is part of a website. It can contain links, audio, video, text, and pictures. It can be created by using HTML(Hypertext Markup Language).


Web Browser

A web browser is application software that is used to access different web pages and websites. We can access different web pages and websites via the internet. We can locate various sites and web pages using their URL.


More questions on Web Technology I

What is a link? Write the various ways of linking a document with another.

The link is a feature in HTML that allows the user to connect two webpages or documents.Alinkhas two ends -- calledanchors-- and a direction. The link starts at the "source" anchor and points to the "destination" anchor, which may be any Web resource (e.g., an image, a video clip, a sound bite, a program, an HTML document, an element within an HTML document, etc.).

HTML links are hyperlinks.

You can click on a link and jump to another document.

When you move the mouse over a link, the mouse...

Define table and write its tag.

he<table>tag defines an HTML table.

An HTML table consists of one<table>element and one or more<tr>,<th>, and<td>elements.

The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell.

An HTML table may also include<caption>,<colgroup>,<thead>,<tfoot>, and<tbody>elements.


Example

A simple HTML table, containing two columns and two rows:

<table>
<tr>
...
Close Open App