# Max HTML Size All pages that exceed the maximum HTML size specified in Advanced settings > Report settings (default: 204,800bytes). **Priority**: Low **Impact**: Negative ## What issues it may cause Large HTML pages can be slow to load and may not be fully indexed by search engines, negatively impacting both usability and SEO performance. ## How do you fix it Use this report to identify HTML pages that exceed the Max HTML size setting and review if the size of HTML can be reduced. ## What is the positive impact Optimising these page should result in a better user experience and potentially open up more pages to be indexed by search engines and drive more relevant and high quality traffic to your website. ## How to fetch the data for this report template You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query: ```graphql query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlUrls(after: $after, reportType: Basic) { nodes { pageTitle url description foundAtUrl htmlSize deeprank level contentSize wordCount foundInGoogleAnalytics foundInGoogleSearchConsole foundInBacklinks foundInList foundInLogSummary foundInWebCrawl foundInSitemap } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"max_html_size"} ```