Is it feasible to apply the h1 style to all text within a div without utilizing tags?
For instance:
<div id="title-div" style="h1">My Title</div>
Or a potential solution could be:
#title-div {
style: h1; //Imports all styles from h1
}
Would achieving this result be viable?