)
I\'m trying to have
tags inside paragraphs, like:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam pulvinar
Just place a h2 tag at the starting of paragraph.
For eg.
The p tags are automatically breaking as soon as the html parser reaches the hx tags. if you really want to do this you must close the p tag before the hx tag. then set p and hx to display inline!
is the para and we want automatically breaking enclosed with h1 tag..
The p tags are automatically breaking
as soon as the html parser reaches the hx tags. if you really want to do this you must close the p tag before the hx tag. then set p and hx to display inline!
but we cant achieve the style we gave to p tag as p tag automatically breaks.
Note: h1 tag should be styled as
h1{ display:inline; !important}