Questions tagged [html]
HTML (HyperText Markup Language) is the predominant markup language used for creating web pages. In modern web pages, HTML is used to markup the contents of the website, while CSS and Javascript are used to define the styles and behaviors respectively.
1,438 questions
0
votes
0
answers
25
views
Is there a way to implement URL image previews without using Facebook's Open Graph or Twitter card meta tag?
I find it kind of surprising that HTML, invented in 1993, still doesn't have a standardized default tag for URL image previews, but instead one has to rely on some code by Facebook or Twitter.
1
vote
1
answer
57
views
How to prevent multiple GET requests for the same resource when it's used via <embed> multiple times in a page?
I have a page that I'm working on that uses an external SVG file multiple times via the <embed> tag and I've noticed that each instance triggers a separate GET request. The same issue also ...
1
vote
2
answers
114
views
Google crawling excessive URL on my website
My website is currently encountering a case where we have approximately ~11 milion currently crawled but not indexed URLs. Resulting in our listing page not showing up in Google search result, all ...
0
votes
2
answers
301
views
How to change title tag and meta description in Blogger label?
Blogger support unfortunately did not help to customize the html, so I created this code with ChatGPT. But I have 3 problems:
1, The comments in the code go in the browser tab, so I have to remove ...
0
votes
2
answers
206
views
Next.js not rendering clean HTML source: a problem for SEO and/or accessibility?
Next.js (V15, App router, SSR) does not render HTML as initially structured.
It renders <template> tags inside the structure, and further in the source, the content in a hidden <div>.
Thus,...
0
votes
1
answer
135
views
Bagisto (Laravel) Site Not Showing H1 Tags & Duplicate Page Titles – Any Solution?
I'm using Bagisto (Laravel-based eCommerce framework) to build my site, but I'm facing an SEO-related issue:
None of the pages are showing tags when I inspect the page source.
All pages appear to ...
2
votes
1
answer
364
views
WhatsApp/Facebook Not Showing Link Previews despite correct tags (Working fine on Instagram/Twitter)
I have all the tags setup correctly for link previews. Link previews work flawlessly on Instagram and Twitter.
But, Facebook/ WhatsApp refuses to show images.
Having gone through almost all Stack ...
0
votes
2
answers
111
views
How to create HTML meta titles and descriptions for multi-page lists or directories
I've searched for hours and cannot find a specific answer to my question. If SEO page titles and meta descriptions are supposed to be unique for every page, but you have a list or directory with ...
1
vote
0
answers
180
views
Why is chrome trying to load images with just `data-src` attribute?
I tried the following code on codepen
<img data-src="not_supposed_to_load">
Which, as far as I know, shouldn't fire any network request. But when I check chrome console:
I also ...
0
votes
1
answer
254
views
`<h2>` and `<h3>` in a site menu? - considering SEO vs a11y requirements
We're building a new site and encounter a question on how to expose the main navigation menu in terms of HTML. Note that the site menu is rather on the large side with submenus for different countries,...
0
votes
1
answer
85
views
What hidden content can google accept?
I was reading articles, and if people did an accordion style page where some text is immediately shown and when people perform a certain action, more text loads on the same page and it seems google is ...
1
vote
1
answer
51
views
Is the value href in the base tag for reference only or points to a URL that must exist?
I once had a webpage where I set the href value of the base tag to the path where most links start with that path, but the href value isn't supposed to point to an actual page.
Here's an example of ...
3
votes
1
answer
100
views
prevent content-security-policy from defeating page caching
I run a website with inline javascript.
I created a security policy so javascript can run inline. Then Pagespeed insights shows this issue:
When I read about CSP nonces and hashes, it means ...
1
vote
2
answers
393
views
Impact of React.js Client-Side Rendering on SEO, for Tool Collection Website?
I’m developing a website that offers free tools like converters, compressors, and calculators. My setup includes ASP.NET Core as the backend API and React.js for the frontend.
While researching ways ...
0
votes
2
answers
86
views
Is it a good idea to replace "part" of the H1 with an image via a pseudo element?
The client wants their minimalist logo version to replace the abbreviation of their company name every time it appears on their headings.
For example, if the heading says "You Can Make It Work ...
