Crus4

logo

Top 5 Highest Paying Web Development Jobs in India

Top 5 Highest Paying Web Development Jobs in India Web Development has emerged as one of the most in-demand and rewarding careers in recent times. With businesses rapidly transitioning to the digital space, there is a growing need for skilled web developers who can create and maintain robust websites and web applications. India, with its […]

How to Change Progress Bar Color in HTML

Change Progress Bar Color in HTML The <progress> element is used to create a progress bars on a web page. Loading: The <progress> element can be used within the headings, paragraphs or within the any element in the body. In an example below let’s write a code to create a progress bar in a web […]

HTML button Element – crus4

HTML button Element The <button> tag is used to define a clickable button. The button element can perform various tasks like submitting a form or opening any new web page. Inside a button element we can write any text we want. Here is how we can create a button in html. Example To make the […]

Canvas Game HTML – crus4

Canvas Game HTML Hey guys, in this tutorial I will share with you that how can you create a Game using HTML Canvas. As I already told you in our previous tutorial that canvas element is only the container for graphics. To actually draw the graphics you must make use of scripting language like JavaScript. […]

HTML Video Element – crus4

HTML Video Element In HTML, the <video> element is used to display a video on a web page. At present, there are three video formats that are supported for HTML <video> Element. These are: mp4, WebM, Ogg. In the below table let’s see which browser supports the video file format. Browser mp4 WebM Ogg Chrome […]

SVG Tutorial – crus4

SVG Tutorial About SVG SVG stands for Scalable Vector Graphics. SVG is used to vector based graphics in XML format. It is an W3C recommendation and it integrates with other W3C standards such as the DOM and XSL. In an Example below let’s create a simple svg graphic, and can also edit the svg on […]

SVG Stroke Properties – crus4

SVG Stroke Properties SVG offers different stroke properties that can be applied to any kind of lines, text and outlines of elements. In this chapter we will take a look at the following stroke properties: stroke stroke-width stroke-linecap stroke-dasharray SVG stroke Property The stroke property specifies the color of a line, text or outline of […]

SVG Text Element- crus4

SVG Text Element SVG <text> Element In SVG the Text Element (<text>) is used to define a text. We can change the color of our text and can also apply gradient, mask or filter to our text. Below in an example let’s write an SVG code to write a stylish text: Example The Attribute x […]

HTML Elements Vs Tags – crus4

HTML Elements Vs Tags HTML Elements Vs Tags Most of the beginners think HTML Elements and Tags are same, but actually they are not. HTML Tags are building blocks of html page.  HTML Tags mainly contain three parts. Opening tag (start tag), Main Content and an End tag (closing tag), as shown in a below […]

SVG Triangle – crus4

SVG Triangle SVG Triangle In our Previous Article we have learnt about SVG Polygon. Where we learn that polygon is any closed figure with three or more than three straight sides. Since the triangle also consists of three sides, so we are gonna use the <polygon> element to create a triangle. Below in an Example […]