Tapas Kumar Ghosh has Published 150 Articles

Python program to convert a string into lowercase

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 14:42:02

368 Views

Python has various built-in functions that can be used for capitalization of the string. In this article develop a python program to perform this task using its lower() function. The lower() method converts each uppercase character in the input string to lowercase before returning the lowercased strings. It returns the ... Read More

How to disable resizable property of textarea using CSS?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 16-May-2023 09:33:13

656 Views

In CSS we can use the ‘resize’ property to resize the textarea box of a webpage. We can resize the height and width of the textarea box. In case if we set the resize value to none, the textarea box will not resize. In some situations, disabling the resizable functionality ... Read More

How to Draw Graphics using Canvas in HTML5?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 16-May-2023 09:30:57

411 Views

In HTML5 We can use the canvas element to Draw 2D Graphics on the webpage. To draw the canvas graphics, we use tag that creates the interactive graphics, and animation to render it to the web browser. This Canvas element is only available in HTML 5 and not in ... Read More

How to Design Wave Images in HTML?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 16-May-2023 09:28:42

441 Views

HTML has an SVG element that can be used for designing wave images. The wave image shows the unique style of the webpage and it becomes more user interactive while adding the property of animation and transitions to it. The wave design is generally used in the landing page, button, ... Read More

How to display paragraph elements as inline using CSS?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 16-May-2023 09:25:49

1K+ Views

CSS has internal and inline styles that can be used to display the paragraph element in an inline manner. CSS is a language used for styling the HTML and XML texts. Changing the display property of an HTML element is a typical CSS job. The display attribute of an element ... Read More

How to display video control in HTML5?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 15-May-2023 18:20:12

255 Views

HTML has embed, object, and iframe tags to display the video control in HTML5. Sometimes we would like to watch a video and pause the video with the stop button but we don’t know what exactly happens to it. The boolean attribute is defined as controls and the attribute includes ... Read More

How to disable the drop-down list in HTML5?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 15-May-2023 18:18:43

1K+ Views

The drop-down list defines the list of available options selected by the users. We visit many websites in our day-to-day work and on those web pages we will find various options in the drop-down list in one or more navigation to access that particular webpage. For example- Drop-down menus on ... Read More

How to display incorrect content using HTML5?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 15-May-2023 18:13:32

76 Views

In HTML we have two elements i.e. s and del to display the incorrect content. There is no experimental difference between the ‘s’ and ‘del’ tags and also there is no proof that search engines take any action on these elements. For Example Let’s say there are two sentences to ... Read More

How to disable spell check from input box and text area in HTML forms?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 15-May-2023 18:09:24

574 Views

The term spell check is used to check the spelling of a word. The input box is defined by an input element in HTML that allows the user to text something on it. The textarea is termed by feedback or comment box that allows the user to write more lines ... Read More

How to draw a circle using an SVG tag in html?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 15-May-2023 18:07:22

523 Views

The HTML’s SVG tag is a container that is used to describe the 2D graphics. The SVG stands for Scalable Vector Graphics and represents the two-dimensional graph in the X and Y coordinate system of any vector diagrams. This type of tag is mostly helpful to draw vector diagrams like ... Read More

Advertisements