HTML-Style-tag
admin
html style tag in body #HTML-Style-tag
<style>
for Web Design
In this article , we discribe the HTML <style>
tag to add CSS to your web pages. Includes examples, features, and best practices for styling HTML elements.
<style>
Tag
The <style>
tag in HTML is used to define CSS (Cascading Style Sheets) for a web page. It allows you to add styles like colors, fonts, and layouts directly within your HTML document. The <style>
tag is typically placed inside the <head>
section, but modern standards also allow it to be used within the <body>
with the scoped
attribute.
In this article, we’ll explore how to use the <style>
tag, its features, and provide practical examples to help you style your web pages effectively.
<style>
Tag
The <style>
tag is used to embed CSS directly into an HTML document. Here’s the basic syntax:
<style>
selector {
property: value;
}
</style>
For example:
<style>
h2 { color: yellow; }
p { color: green; }
</style>
<style>
Tag
Below is an example of a basic HTML page using the <style>
tag to apply styles:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Example Page</title>
<style>
h2 { color: yellow; }
p { color: green; }
</style>
<style>
h2 { color: green; }
p { color: pink; }
</style>
</head>
<body>
<h2>This is a heading</h2>
<p>This is a paragraph.</p>
</body>
</html>
.html
extension (e.g., example.html
).<style>
Tag<style>
tag allows you to define CSS directly within your HTML document.<style>
tag to be used within the <body>
with the scoped
attribute.<style>
tags are used, the last one takes precedence.<style>
tag to customize fonts, colors, layouts, and more.<style>
Tag<head>
: For better organization, place the <style>
tag inside the <head>
section.<style>
Tag?
The <style>
tag is useful for:
The HTML <style>
tag is a powerful tool for adding CSS to your web pages. By understanding how to use it effectively, you can create visually appealing and well-structured websites.
Start experimenting with the <style>
tag in your projects today. If you found this guide helpful, share it with your peers and leave a comment below. For more HTML and CSS tutorials, subscribe to our newsletter!