24 Computer -- Web Technology I

Who is responsible for the looks of the page you're looking at right now and who's responsible for the way the page responds to your clicks?

Who is responsible for the looks of the page you're looking at right now and who's responsible for the way the page responds to your clicks?

It is the front-end developer who's responsible for everything that is pleasing to your eyes. The way the site looks, the way effects appear on hovering your cursor is all due to the work of a front-end developer. 

It is the back-end developer who's responsible for the code that works on handling the information received, managing data-bases and so much more.

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