x

What is going on with my H1 tags

Bing is saying there are no H1 tags. I tried adding them as a custom code under tracking tools but no luck. Id Bing is telling me its a "High" issue the its needs to get fixed. I used to create my own site using Dreamweaver to adding a H1 tag was easy. How do you ad a H1 tag in Square. Thank you for any support you can provide. 

 

site:  www.phslightingsolutions.com 

442 Views
Message 1 of 3
Report
2 REPLIES 2

According to other threads that I have found, it appears that you can't add H1 tags onto websites created with Square.  You will have to start over with a different web building service

372 Views
Message 2 of 3
Report

Encapsulate your tags within JavaScript using the embed code adds H1 tags.... Such as below; but Bing will still not recognize them. Bing is only pulling up code prior to DOM element rendering...

<script>
const h1 = document.createElement("H1");
const textNode = document.createTextNode("This is an H1 text");
h1.appendChild(textNode);
document.body.appendChild(h1);

</script>

287 Views
Message 3 of 3
Report