Computer Science, asked by yashn5899, 6 months ago


1. What are Tables and How are they created in HTMLS?
2. What are the different types of lists supported by HTMLS? Explain each one of them briefly
3. How are images added in an HTML document? What are the different attributes of an image
clement
4. What is the importance of associating an alternate text with an image?
5. How can you link webpages in HTML? What are the different types of linking?
6. Explain with the help of code, how audio clips can be added in an HTML document,
7. Discuss the purpose of any two attributes of the video tag.
8. Differentiate between LAN and WAN
9. Name the different elements of a table in a database
10. Describe Web Apps.​

Answers

Answered by antaripa2203
0

Explanation:

Explanation:Thank you for free points....

Answered by vedmalan34331
1

Explanation:

1. constructing an HTML table consists of describing the table between the beginning table tag, <table>, and the ending table tag, </table>. between these tags, you then construct each row and each cell in the row.

2. the three lists types:-

● unordered list-- used to group a set of related items in no particular order.

● ordered list -- used to group a set of related items in a specific order.

● description list--- used to display name/value pairs such as terms and definitions.

3. each image must carry at least two attributes: the src attribute, and an alt attribute. the SRC attribute tells the browser where to find the image. it's the value is the URL of the image file. whereas the alt attribute provides an alternative text for the image, if it is unavailable or cannot be displayed for some reason.

4. alt text or alternate text is a feature added to an image tag in HTML. this text seems inside the image container when the image cannot be exhibited. it helps searchs engines comprehend what an image is about. alternate text is also very accommodating in case images on a page cannot be found.

5. linking in HTML code is done with the anchor tag, the <A> tag. the letter "A" in the tag is than followed by an attribute. for a link to another web page, the "A" is followed by "HREF". to set a bookmark in the same page, the "A" is followed by "NAME", which you'll see how to do later.

6. audio can be added in an HTML document using <audio> tag.

the <source> element allows you to specify alternative audio files which the browser may choose from. the browser will use the first recognised format.

7. the <video> tag is used to embed video content in a document, such as a movie clip or other video streams. the <video> tag contains one or more <source> tags with different video sources. the text between the <video> and </video> tags will only be displayed in browsers that do not support the <video> element.

8. A WAN differs from a LAN because it is not restricted by geographic location. as opposed to a LAN which connects local devices to each other, a WAN connects LANs to each other, usually across multiple as well as individual devices that connect from a remote distance.

9. it consists of columns and rows. in relational databases, and flat file databases, a table is a set of data elements (values) using a model of vertical columns (identifiable by name) and horizontal rows, the cell being the unit where a row and a column intersect.

10. A web application (or web app) is application software that runs on a web server, unlike computer- based software programs that are run locally on the operating system (OS) of the device. web applications are accessed by the user through web browser with an active internet connection.

Similar questions