Computer Science, asked by bhavya1018, 1 year ago

what are html tables

Answers

Answered by astroed
3

HTML tables are ordinary tables like we see in excel . They have rows and columns besides that they are created by html code. To create rows in html we use <tr> tag and to create columns in html we use <td> tag. Both tags are closed under <table> tag. Lets see the example:

<table>

<tr>

<td>Bhavya</td>

</tr>

</table>


astroed: Thanks
astroed: Well I can write many things in this but I think this enough to know about html tables basics.
Answered by Anonymous
0

HTML tables are generally used for creating tables like excel on the web-page. It is indicated by <table> tag.

HTML - Hypertext Markup Language

HTML(Hyper text Markup Language) is a standard Markup language generally used for creating web pages and websites front layer. HTML is assisted with the programming languages CSS and JavaScript to display the documents on web browser. HTML is one of the easiest programming language that can be useful in creating web pages and designing websites with the front and back end layer.

HTML latest version is "HTML 5". HTML is a programming language by "WHATWG" and HTML is a type of document file language which helps us to display our documents and files on web-browser in the form of Website. Along with HTML, CSS and Javascript are also used to make the look and functions of site better.

HTML Tags:

There are three main types of Tags in HTML; Opening Tag, Closing tag and Content tag. Each tag have it's different functions and methods. This all tags helps us to run our program and documents without any error and correctly.

  • HTML program is started using <HTML> tag. This tag indicates that, this is HTML code or text to be displayed in browser.

  • Second tag in any HTML document is <Head> tag. This tag represents the title of the webpage.

  • The most important tag; Body tag; Indicates the all visible content on the web. This tag represents the all sub-tags on the webpages.

  • <p> - This tag represents the Paragraph on the webpage.

  • <article> - This tag represents that, this is Article on the webpage.

  • <h1> - This tag represents the heading; <h2> represents the subheading and so go on.

  • <b> - Defines the Bold text.

  • <i> - Defines the italic text.

  • <u> - Underline the text on the webpage.

  • <table> - To create a table like excel on website.

Advantages of using HTML:

1. HTML helps us to show our documents and files on the website.

2. HTML is a very easy language, so anyone can learn it and can do job.

3. HTML is easy language to program. This helps programmers to write the code for their websites without any error and without any mistakes.

4. HTML is free to use and easy to learn.

5. All browsers support HTML language.

6. It is simple to edit HTML documents.

7. HTML is a lightweight and it is basic of all programming languages.

Disadvantages of HTML:

1. Errors made while programming HTML can be very costly.

2. If we have to create dynamic pages, then HTML is not useful their.

3. There are some security issues using HTML language.

4. We have to write lot of codes to make simple web pages.

5. All browsers don't render the HTML codes same.

What is Dynamic HTML ?

Dynamic HTML, also referred as "DHTML" is basically a collection of various technologies. We can create only static web-pages using HTML, But DHTML can be used for creating dynamic web pages. DHTML is a collection of various technologies which helps us to create a responsive and interactive websites with animations and effects.  

Similar questions