Home > database >  Some paragraph elements not showing on page
Some paragraph elements not showing on page

Time:03-11

Edit: the page works correctly in Firefox Incognito. Not with Chrome with an ad blocker, but I don't know what the ad blocker could be picking up on to block.

The last two paragraph elements don't show up when I open this in my browser. I have no CSS.

<html>

<body>
  <p>ID = 7615493245_Karin_Johnson_25-Day_02-18-2022</p>
  <h1>Name = Karin Johnson</h1>
  <h1>Report type = 25-Day Report</h1>
  <h1>Total impressions = 5574</h1>
  <p>Percentage of Impressions = 111%</p>
  <h1>Device Impressions:</h1>
  <p> Other Devices: 5</p>
  <p> iPhone: 2174</p>
  <p> Android: 723</p>
  <p> Tablet: 110</p>
  <p> Desktop: 163</p>
  <h1>Impressions by Gender:</h1>
  <p> Female: 2823</p>
  <p> Male: 2750</p>
  <h1>Impressions by Age:</h1>
  <p> Age 18 - 24: 293</p>
  <p> Age 25 - 34: 889</p>
  <p> Age 35 - 44: 860</p>
  <p> Age 45 - 54: 519</p>
  <p> Age 55 - 64: 410</p>
  <p> Age 65 : 204</p>
  <h1>Links to your Ads:</h1>
  <p> Google Ad: https://app.hubspot.com/file-preview/4871530/file/64638361866/</p>
  <p> Facebook Ad: https://app.hubspot.com/file-preview/4871530/file/60988332149/</p>
  <p> Instagram Ad: https://app.hubspot.com/file-preview/4871530/file/64640044824/</p>
</body>

</html>

This is what I see at the bottom of the rendered page: enter image description here

This is what I see when I check the page source in my browser: enter image description here

But this is what I see when I "inspect" with my browser: enter image description here

And expanded, it looks like this:

enter image description here

CodePudding user response:

Try to put the ad link in a iframe tag to see what appears. Something like this:

Google Ad: <iframe src="https://app.hubspot.com/file-preview/4871530/file/64638361866/" frameborder="0"></iframe></p>

Demo

CodePudding user response:

Some Ad Blockers identify suspicius links and words like "ad" and prevent them from showing.

  •  Tags:  
  • html
  • Related