I recently encountered a problem with my website. Everything was functioning smoothly until I decided to add some in-page links to a large page. After adding the links, the background no longer stretched the entire length of the page. When scrolling down, I noticed that the <body>
tag, embedded within the <html>
tag, only covered the correct amount on my computer screen but not the entire page. Upon inspecting the page, I discovered that the <html>
tag appeared to end abruptly. I removed the added content, but the issue persisted. If additional information such as the CSS or coding is required, please let me know. Thank you for any assistance.
Below is some code snippet that shows the content up to where the <body>
tag stops.
<link rel="stylesheet" type="text/css" href="http:**********/index.css>
<title>School</title>
... (Code truncated for brevity) ...
/*CLASSES*/
.linktype1 {color:white;text-decoration:none; }
.spangroup1 {margin-left:15px;margin-right:15px;font-size:20px }
.SchoolHrGroup1 {color:blue; }
.HomeHrGroup1 {Color:red; }
.GenericHeaderProperties1 {padding:13px; }
.GenericContainerProperties1 {border-style:ridge;height:100% }
.SpanTime { float:right; font-size: 15px; color:black; }
That's all the relevant details for now.