HTML id attribute

  • Post category:HTML

Get the code of HTML id attribute and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<style>
#title {
  color: cyan;
  background: orange;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  font-size: 50px;
}
</style>


<h1 id="title">Hello</h1>