In HTML, headings are denoted with
(1,2,3,4,5,6) tag.
My question is regarding following HTML code:
Are there predefined property for same in CSS; which gives same look and feel as H gives?
No.
The default style of a heading is (in most browsers) exactly that: a collection of different CSS rules coupled with an Hn
selector (and stored in the browser stylesheet).
There isn't a (plain CSS) way to automatically copy all of those rules.
You could use the Inspector tool that comes in the developer tools built into most browsers to examine a heading and look at the default rules for it, and then copy those rules to your own (author) stylesheet.
There may be some variations between browsers, so you'll generally want to set the Hn
rules explicitly too.