Horje

How to Use the id attribute to style text with CSS

Id uses to the css and html Style.
index.html
Example: HTML
<!DOCTYPE HTML>
<html>
<head>
<style>
#myHeader {
  color: red;
  text-align: center;
}
</style>
</head>
<body>

<h1 id="myHeader">Horje is the best!</h1>

</body>
</html>

Output should be:

How to Use the id attribute to style text with CSS




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Global Attributes
Uploaded by:
Admin