Category Archives: Uncategorized

CSS Variables – The var() Function

CSS Variables The var() function is used to insert the value of a CSS variable. CSS variables have access to the DOM, which means that you can create variables with local or global scope, change the variables with JavaScript, and change the variables based on media queries. A good way to use CSS variables is when it… Read More »

How to add Navigation bar in website using CSS?

Navigation Bars Having easy-to-use navigation is important for any web site. With CSS you can transform boring HTML menus into good-looking navigation bars. Navigation Bar = List of Links A navigation bar needs standard HTML as a base. In our examples we will build the navigation bar from a standard HTML list. A navigation bar… Read More »

How To Add Fonts in CSS?

Choosing the right font for your website is important! Font Selection is Important Choosing the right font has a huge impact on how the readers experience a website. The right font can create a strong identity for your brand. Using a font that is easy to read is important. The font adds value to your… Read More »

Adding Transition Effects In MS PowerPoint

Transitions are animations that you can use when advancing from one slide to the next during a presentation. They can be fun, but be careful not to overdo it with complicated transitions because they can become distracting. Apply a Transition Select the slide that you want to apply a transition to.To select multiple slides, hold… Read More »

Adding a Hyperlink In MS PowerPoint

In PowerPoint, you can create a hyperlink using any text within your presentation. When clicked on, a hyperlink can directly link to a specific slide within your presentation, a saved file, a web page, another PowerPoint presentation, or a custom email.To insert a hyperlink into your presentation: Open the PowerPoint presentation. Highlight the text or… Read More »

HTML Form Attributes

This chapter describes the different attributes for the HTML <form> element. The Action Attribute The action attribute defines the action to be performed when the form is submitted. Usually, the form data is sent to a file on the server when the user clicks on the submit button. In the example below, the form data is sent to a… Read More »

12.1 Class

A class is a group of objects which have common properties. It is a template or blueprint from which objects are created. It is a logical entity. It can’t be physical. A class in Java can contain: Fields Methods Constructors Blocks Nested class and interface Syntax to declare a class: class <class_name>{      field;      method;  }  

26. Static class member

Static data member are class members that are declared using static keyword A static member has certain special characteristics These are: Only one copy of that member is created for the entire class and is shared by all the objects of that class , no matter how many objects are created. It is initialized to… Read More »