24 Computer -- Web Technology I

What is HTML? Write the basic skeleton of HTML.

What is HTML? Write the basic skeleton of HTML.

HTML

HTML(Hypertext Markup Language) is a markup language used to create web pages. It is a set of tags that are used to make the web pages and how the information is presented on the web pages. The web browser interprets the HTML codes and displays the contents of the web pages. It isn’t a programming language but rather a markup language meaning that it is a set of tags that tell the browser how to display the contents of web pages.

HTML was developed by Tim Berners Lee developed HTM in 1990 at CERN (a European Particle Physics Laboratory in Geneva, Switzerland). There are many different versions of the HTML that has been developed over the years.


Basic Skeleton of HTML


<HTML>
<HEAD>
<TITLE> <!--YOUR TITLE HERE--></TITLE>

</HEAD>

<BODY>


<!--YOUR CONTENT HERE-->


</BODY>
</HTML>


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