Computer Science, asked by HelperToAll, 8 months ago

Write a code to produce following Html table.

Attachments:

Answers

Answered by tejasgupta
35

What is HTML ??

The  acronym for HTML is Hyper Text Markup Language. Initially, it was known by the name of GML (General Markup Language). In 1986, it was renamed to SGML (Standard Generalized Markup Language). In 1989, Sir Tim Berners-Lee and his team redesigned this language and named it Hyper Text Markup Language (HTML), as we know it today

HTML is a markup language usually used to create the basic structure of a web-page. Using HTML with JavaScript (JS is a client-side programming language used to make HTML pages alive), we can even create Windows 10 Store Applications through Visual Studio

What are Tags ?

Tags are a piece of code that tells the web-browser what to show and how to show. HTML is a tag-based language.

What is a Table ??

A table is a collection of rows and columns used to represent some data. In HTML, w can create tables using the < table > tag. The < table > tag is a container tag and has a closing < /table > tag. Rows in a HTML table are created by the < tr > tag. Table header is created by the < th > and table cells / data is created using the < td > tags.

How to create that table as in the image ??

The code is in the attachment with the HTML file and its output...

Attachments:
Similar questions