Monthly Archives: June 2022

Working with HTML Head Elements

The HTML <head> element is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, and <base>. The HTML <head> Element The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag. HTML metadata is data about the HTML document. Metadata is not displayed. Metadata typically define the document title, character set, styles, scripts, and other meta… Read More »

How to apply File Paths in HTML?

A file path describes the location of a file in a web site’s folder structure. File Path Examples Path Description <img src=”picture.jpg”> The “picture.jpg” file is located in the same folder as the current page <img src=”images/picture.jpg”> The “picture.jpg” file is located in the images folder in the current folder <img src=”/images/picture.jpg”> The “picture.jpg” file… Read More »

Using JavaScript in HTML

JavaScript makes HTML pages more dynamic and interactive. Example <!DOCTYPE html> <html> <body> <h1>My First JavaScript</h1> <button type=”button” onclick=”document.getElementById(‘demo’).innerHTML = Date()”>Click me to display Date and Time.</button>​ <p id=”demo”></p> </body> </html> The HTML <script> Tag The HTML <script> tag is used to define a client-side script (JavaScript). The <script> element either contains script statements, or it points to an… Read More »

What is Iframes?

An HTML iframe is used to display a web page within a web page. HTML Iframe Syntax The HTML <iframe> tag specifies an inline frame. An inline frame is used to embed another document within the current HTML document. Syntax <iframe src=”url” title=”description“></iframe> Tip: It is a good practice to always include a title attribute for the <iframe>. This is used by screen… Read More »

HTML id Attribute

The HTML id attribute is used to specify a unique id for an HTML element. You cannot have more than one element with the same id in an HTML document. Using The id Attribute The id attribute specifies a unique id for an HTML element. The value of the id attribute must be unique within the HTML document. The id attribute is used… Read More »

HTML class Attribute

The HTML class attribute is used to specify a class for an HTML element. Multiple HTML elements can share the same class. Using The class Attribute The class attribute is often used to point to a class name in a style sheet. It can also be used by a JavaScript to access and manipulate elements with the specific class… Read More »

What is PowerPoint ?

Sometimes abbreviated as PP or PPT, PowerPoint is a presentation program developed by Microsoft that creates a slide show of important information, charts, and images for a presentation. It is most often used for business and school presentations. Where do you find or start PowerPoint? If you have Microsoft PowerPoint or the entire Microsoft Office package installed in Microsoft Windows, you can find PowerPoint in your Start… Read More »

HTML Block and Inline Elements

Every HTML element has a default display value, depending on what type of element it is. There are two display values: block and inline. Block-level Elements A block-level element always starts on a new line, and the browsers automatically add some space (a margin) before and after the element. A block-level element always takes up… Read More »

Payroll Reports In Tally Prime

You can use the Payroll Statement report to generate the report for a specific Pay Head/Ledger. Gateway of Tally > Display More Reports > Payroll Reports > Payroll Statement > select the appropriate Pay Head from the List of Pay Heads.Alternatively, Alt+G (Go To) > type or select Payroll Statement > and press Enter. Note: The button options in Payroll Statement report is similar to Pay Sheet report. Refer Pay Sheet report for more information on button options. Configuration Options… Read More »