I have my index.html file and another file titled page2mainfeed.html, when you click the submit button in the the index file it takes you to the page2mainfeed.html. this works fine when the files are opened with Firefox, but when i try running them in live server, after i hit submit, i get the error message "The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range. The character encoding of the page must be declared in the document or in the transfer protocol." Here's the head for index.html,
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pigeon</title>
<link rel="stylesheet" type="text/css" href="css/pigeonindex.css" />
</head>
And here's the head for page2mainfeed.html
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pigeon</title>
<link rel="stylesheet" type="text/css" href="css/page2mainfeed.css" />
</head>
I'm pretty new to html so i'm sure the answers pretty simple, but none of the other solutions ive found have worked. Thanks in advance.