Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a piece of great software that I use but the owner deserted it a couple of years ago hence there has not been an upgrade or any maintenance.

In one section I use it come up with the following error message and would like some help in knowing if there is ever a hope that this can be fixed? It reads....."The 'meta' start tag on line 15 does not match the end tag of 'head'. Line 177, position 3." What can be done?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

Sometimes <meta> and <link> tags may show these errors maybe because they're not closed properly.

Make sure that:

  1. Your meta tag is inside the <head> </head> tags
  2. You do close your tag, like this:

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...