Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours scrolling social media and waste money on things we forget, but won’t spend 30 minutes a day earning certifications that can change our lives.
Master in DevOps, SRE, DevSecOps & MLOps by DevOpsSchool!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

HTML: Class Attribute

The HTML class attribute makes it possible to define equal styles for elements with the same class name. The class attribute specifies one or more class names for an element. The class attribute is mostly used to point to a class in a style sheet. However, it can also be used by JavaScript (via the … Read more

HTML: Style Tag

The <style> tag is used to declare style sheets within the head of  HTML document. Inside the <style> element you specify how HTML elements should render in a browser. Each HTML document can contain multiple <style> tags. Attribute Value Description media media_query Specifies what media/device the media resource is optimized for scoped scoped Specifies that … Read more

HTML: Link Tag

The <link> tag defines a link between a document and an external resource. The <link> element is an empty element, it contains attributes only. This element goes only in the head section, but it can appear any number of times. Attribute Value Description crossorigin anonymoususe-credentials Specifies how the element handles cross-origin requests href URL Specifies … Read more

HTML: Button tag

We can customize the appearance of button using the <button> tag. Attribute Value Description autofocus autofocus Specifies that a button should automatically get focus when the page loads disabled disabled Specifies that a button should be disabled form form_id Specifies one or more forms the button belongs to formaction URL Specifies where to send the … Read more

HTML: Option Tag

The <option>…</option> tags inside the <select>….</select> element define an option in the drop-down list. Attribute Value Description disabled disabled Specifies that an option should be disabled label text Specifies a shorter label for an option selected selected Specifies that an option should be pre-selected when the page loads value text Specifies the value to be … Read more

HTML: Select Tag

The <select>….</select> tag creates a drop-down list to accept user input from a list of items. Attribute Value Description autofocus autofocus Specifies that the drop-down list should automatically get focus when the page loads disabled disabled Specifies that a drop-down list should be disabled form form_id Defines one or more forms the select field belongs … Read more