diff --git a/src/best-practices/frontend-performance/content/minimize-iframe-count.md b/src/best-practices/frontend-performance/content/minimize-iframe-count.md index 8c79ccf4b..d1e726945 100644 --- a/src/best-practices/frontend-performance/content/minimize-iframe-count.md +++ b/src/best-practices/frontend-performance/content/minimize-iframe-count.md @@ -1 +1,3 @@ -# Minimize iframe count \ No newline at end of file +# Avoid iframes + +Use iframes only if you don't have any other technical possibility. Try to avoid iframes as much as you can. Iframes are not only bad for performance, but also for accessibility and usability. Iframes are also not indexed by search engines. \ No newline at end of file diff --git a/src/pages/best-practices/[bestPracticeId]/[...topicId].astro b/src/pages/best-practices/[bestPracticeId]/[...topicId].astro index a06c049f1..30534a314 100644 --- a/src/pages/best-practices/[bestPracticeId]/[...topicId].astro +++ b/src/pages/best-practices/[bestPracticeId]/[...topicId].astro @@ -31,7 +31,7 @@ const { file, bestPracticeId, bestPractice, heading } = Astro.props as BestPract permalink={`/${topicId}`} >
-
+