
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Lokesh Badavath has Published 99 Articles

Lokesh Badavath
8K+ Views
A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is marked with the numbers by default. You can create an ordered list using the tag and, define the list ... Read More

Lokesh Badavath
10K+ Views
A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is marked with the numbers by default. You can create an ordered list using the tag and, define the list ... Read More

Lokesh Badavath
10K+ Views
A list is a connected items written consecutively (usually one below other). Using HTML, you can create two kinds of lists unordered list and ordered list. An ordered list is numbered and an unordered list is not numbered it can be created with the tag and define the items ... Read More

Lokesh Badavath
5K+ Views
An ordered list is numbered and an unordered list is not numbered it can be created with the tag and define the items of the list using the tag . We can create 4 types of unordered list in HTML − disc − This creates an unordered list marked ... Read More

Lokesh Badavath
6K+ Views
We can easily add HTML tag inside a table. The HTML tag should be placed inside the tag. For example, adding a paragraph … tag or other available tags inside the tag. Syntax Following is the syntax to use an HTMl tag inside HTML table. ... Read More

Lokesh Badavath
8K+ Views
We use the CSS property border-spacing, to set border spacing for an HTML table. It adds space around the table border between the adjacent cells in a table. We should specify the value in pixels for the border-spacing property to add. Syntax Following is the syntax for adding space around ... Read More

Lokesh Badavath
838 Views
We use the tag, to create a table with caption in HTML. The caption tag will be inserted immediately after the tag. We can add only one caption for one table. By default, the alignment of this tag is center. We can change the alignment using CSS property ... Read More

Lokesh Badavath
16K+ Views
We use border-collapse property to create a collapsed border in HTML. The border-collapse is a CSS property used to set the table borders should collapse into a single border or be separated with its own border in HTML. Border-collapse property has four values: separate, collapse, initial, inherit. With the ... Read More

Lokesh Badavath
3K+ Views
Tables in HTML can have horizontal header and vertical header. For the horizontal header, we need to set all inside a single tag. Syntax Following is the syntax to set horizontal header for a table − horizontal header1… ... Read More