4

I want to create my own tag such as

<store></store>, <market></market>
Albzi
  • 15,431
  • 6
  • 46
  • 63
Makashif
  • 115
  • 9

1 Answers1

3

It's possible, check out > Is there a way to create your own html tag in HTML5?

But it would cause your HTML to become invalid.

A custom tag serves the same purpose as a tag - it has no direct attribute and does nothing by default, but it can be styled by HTML and accessed by javascript.

timm
  • 31
  • 3