Skip to main content

Posts

Showing posts from May, 2021

HTML codes for creating salary slip template

                     HTML codes for creating salary slip If you’re looking to create a salary slip template using HTML, you’ve come to the right place. A salary slip is an essential document provided to employees that outlines the details of their salary, allowances, and deductions. In this article, we’ll walk through the components of a salary slip and provide an example of HTML code to help you create a functional and simple salary slip template. What is a Salary Slip Template? A salary slip template is a pre-defined format used to generate payslips for employees. It typically includes details such as the employee's basic salary, allowances (e.g., house rent, medical ), and deductions (e.g., taxes, provident fund ). Salary slips are usually issued monthly by companies and government organizations to provide transparency and help employees understand their earnings and deductions.   Read also:   Free Google To...

Write the HTML code to display table cell in various alignment

 Write the HTML code to display table cell in various alignment                   In this tutorial we are demonstrate to write the HTML code to display table cell in various alignment  using HTML and Css. With Examples and Codes. Here the example specifies below to create the display table cell in various alignment using HTML code. <table> defined as HTML table  <td> defined as table cell <td> <tr> defined as row </tr> <th> defined as colulmn or header</th> There are two types of alignment attributes: 1)Horizontal Alignment in a Cell 2)Vertical Alignment in a Cell Example : 1) Horizontal alignment:  <tr align=""></tr>  <td align=""></td> Example: 2) Vertical alignment: <tr align="" valign=""></tr> <td align="" valign=""></td> Table Align  The table align attribute is the table can position and that can be their con...

PostgreSQL Tutorial

                                           PostgreSQL Tutorial                        What is PostgreSQL? PostgreSQL is a popular open-source object-relational database management system (RDBMS).  And this the advanced topics and 30 years+ of still active development in the industry. It's a strong architecture and PostgreSQL works on all operating systems like Windows, Linux,macOS....etc. and it supports relational and non-relational queries like both SQL and JSON. In this tutorial we will dicuss and learn all the topics of PostgreSQL like create a database, create a table, drop table, triggers, stored procedures, drop a database...etc and advance like joins, view ...etc end of this tutorial you will learn. I hope you will complete understanding the different concepts and commands and use data in the...