Create Multiline Input Control Text Area in HTML5

Aman Gupta
Updated on 11-Apr-2023 15:45:30

556 Views

Overview The text area is an HTML tag which is used to write a multiline text in it. So to control the multiline text inside the text area can be achieved with the help of some predefined HTML attribute. These HTML attributes are maxlength, minlength, rows, column and readonly. By using these attributes we can control the text inside the text area. Syntax The syntax to create a text area in the HTML is − Algorithm Step 1 − Create a HTML boilerplate in your text editor. Step 2 − Add the text area tag to the body ... Read More

Create Mini Button Using jQuery Mobile

Aman Gupta
Updated on 11-Apr-2023 15:44:14

217 Views

Overview The jQuery comes up with certain classes by defining those classes in the anchor element, input tag or in a button tag we can create a mini button. The jQuery mobile has its own styling with their classes so there is only need to link the Content Delivery Network (CDN) link with the web page in which we are building the mini button. There are certain class by which we can create the button in jQuery mobile they are − ui-btn − This class creates a jQuery mobile button, by defining this class in an element the ... Read More

Create Mixin for Placeholder in SASS

Aman Gupta
Updated on 11-Apr-2023 15:40:15

235 Views

Overview A placeholder is an attribute of a HTML input tag, which tells the user about the input tag what information is to be filled in it. To style the placeholder of an input tag we will use the Syntactically Awesome Style Sheets (SASS) preprocessor scripting language in which it provides us with a feature of mixin. A mixin is like a simple function which we create in other programming languages. It helps us to not repeat the styling in the style sheet. To use the SASS mixin with our program firstly we should have to install the SASS to ... Read More

Create Mini Sized Selects Using jQuery Mobile

Aman Gupta
Updated on 11-Apr-2023 15:37:22

288 Views

Overview The jQuery provides the attributes with value by which the dropdown list is created without adding the external styling to the element. The mini sized selects with the help of jQuery mobile can also be created by setting the “data-mini” value as true. The dropdown list is created which helps to select the options from the list of given options. Syntax The simple HTML selects syntax is used in this to create a list − Content Delivery Network (CDN) Links The given below links are used to ... Read More

Best Canva Alternatives

Shirjeel Yunus
Updated on 11-Apr-2023 15:15:55

442 Views

What is Canva? Canva is a design tool which can be used for making different types of projects. This tool can let the students know about the basics of design. The app is available for free and comes with many features like photo editing, layout design. The app can also be used by teachers to create posters and different types of education materials. Cost of Canva There are three versions of Canva and the price of each one in Indian rupees can be found in the table below − Version Price in Indian Rupees Free 0 ... Read More

Method Without Parameters and Return Type in Java

Sakshi Ghosh
Updated on 11-Apr-2023 14:55:22

467 Views

First, let us get acquainted with the syntax, and examples, and then finally the implementation. The methods in Java are of great importance since it allows reusability of the same code, reducing the number of statements to be written within the code. There are three main parts of the method in order to make it executable. Declaration of the method. Definition of the method. Invoking the method. Method invoking is the last step, while the other two can be interchanged. The only thing to be kept in mind here is, the method must be declared before invoking it. ... Read More

Create Loop Structure in LESS

Aman Gupta
Updated on 11-Apr-2023 14:54:20

145 Views

Overview Loops make our code clean and help to run the same lines of code multiple times. This makes a code to not to write the same lines of code multiple times. So to style the multiple containers and objects the same can be done by writing a line of code and repeating the same styling property several times. So to come up from this problem, Leaner Style Sheets (LESS) provides a looping facility by using which we can make our code readability easy and can save the developer time of developers in writing numbers of lines of styling property ... Read More

Java Method with 2 Parameters and Without Return Type

Sakshi Ghosh
Updated on 11-Apr-2023 14:54:10

2K+ Views

A method without a return type is termed a void method since it returns nothing. This method can accept multiple parameters. In this tutorial, we will implement Java programs illustrating a method with two parameters and without return type. First of all, we are going to get acquainted with the syntax, examples, and, finally implementation. Syntax public static void method_name (int parameter1, int parameter2) Here, public − It is the access specifier specifying who can access this method. static − It is mandatory to make the method static to avoid errors. void − it denotes that this method returns ... Read More

Create a Link with Media Attribute in HTML5

Aman Gupta
Updated on 11-Apr-2023 14:50:05

483 Views

Overview There are many types of attributes in HTML5, these attributes provide additional functionality to the page. The media attribute is used with the link tag which has different values which are used in different states. These values are: print, all, screen, speech. The ‘print’ value is used with the link tag to provide the print preview of the page. If we want to change style on printing the page then we can use this print value with the media attribute. Sometimes there are some styling for which we had to come up with the same styles for all types ... Read More

Create and Compile LESS File

Aman Gupta
Updated on 11-Apr-2023 14:47:48

757 Views

Overview  A Leaner Style Sheets (LESS) is a dynamic preprocessor language the base language of it is Cascading Style Sheet (CSS). All the preprocessor languages are the upgraded version of the base language, so the LESS also has many more additional features. The LESS has a feature of variable, parent selector, mixins, nested selector, etc. In java on compiling the source code of “.java” file it produces the output as the “.class” file, same as java the LESS file on compiling the “.less” file produces a new file “.css” as output Approach To create and compile a LESS file we ... Read More

Advertisements