HTML - Global style Attribute



A global attribute in HTML called style enables programmers to apply inline CSS styles to HTML elements. This provides a method for defining particular presentation standards, such as colors, fonts, and spacing, within an HTML element itself. It gives you more flexibility and convenience when it comes to altering the appearance of specific parts, giving you more control over how a webpage looks.

To ensure that your website is accessible and maintainable, use it wisely and consider best practices for separating content and presentation.

Syntax

Following is the syntax of the style attribute −

<element style = " " >

Example

In the following example, let’s see the working of style attributes in HTML documents. If we pass the style attributes along with an element, then it becomes Inline CSS.

<!DOCTYPE html>
<html>
<head>
   <title>style attribute</title>
</head>
<body style="text-align: center">
   <h2> style attribute </h2>
   <h1 style="color: green">tutorials <span style="color: black">point</span>
   </h1>
</body>
</html>

On running the above code, the output window will pop up displaying the text applied with CSS on the webpage.

Example

Consider the another scenario, where we are going to use the style attribute

<!DOCTYPE html>
<html>
<head>
   <title>style attribute</title>
</head>
<body style="text-align: center">
   <h2> style attribute </h2>
   <p style=" color: blue; background-color: gray; font-size: 20px; font-style: italic; ">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
</body>
</html>

When we run the above code, it will generate an output consisting of the text applied with a CSS displayed on the webpage.

Example

Let's look at the following example, where we are going to create the div element and using the style attribute.

<!DOCTYPE html>
<html>
<head>
   <title>style attribute</title>
</head>
<body>
   <h2> style attribute </h2>
   <div style="background-color: yellow; font-size: 20px; width: 250px; height: 150px; text-align:center; border-radius: 5px;">This is Div</div>
</body>
</html>

On running the above code, it will generate an output displaying the div element applied with CSS on the webpage.

html_attributes_reference.htm
Advertisements