Html 我的网站在某些手机浏览器上的响应性不好?

Html 我的网站在某些手机浏览器上的响应性不好?,html,responsive-design,web,Html,Responsive Design,Web,我有一个网站 www.harryenglishclub.com 它在电脑上运行良好,在切换到移动视图时也表现出响应能力,但有一款手机在operamini上运行良好,但在谷歌chrome上则不行。及 <meta name="viewport" content="width=device-width, initial-scale=1"> 已经添加到我的标题中。这是我在查看www.harryenglishclub.com的源代码时看到的 <!DOCTYPE HTML PUBL

我有一个网站

www.harryenglishclub.com
它在电脑上运行良好,在切换到移动视图时也表现出响应能力,但有一款手机在operamini上运行良好,但在谷歌chrome上则不行。及

<meta name="viewport" content="width=device-width, initial-scale=1">


已经添加到我的标题中。

这是我在查看www.harryenglishclub.com的源代码时看到的

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
  <title>www.harryenglishclub.com</title> 
</head>
<frameset rows="100%,*" border="0">
  <frame src="http://www.chamanvatikagurukul.in/hec" frameborder="0" />
  <frame frameborder="0" noresize />
</frameset>

<!-- pageok -->
<!-- 10 -->
<!-- -->
</html>

www.harryenglishclub.com
您正在拉入外部站点并将其放置在

尝试在父文档的头部添加视口元标记。在inspector中它似乎对我有用,但在移动设备上我不能确定

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>www.harryenglishclub.com</title> 
<meta name="viewport" content="width=device-width, initial-scale=1">

</head>
<frameset rows="100%,*" border="0">
  <frame src="http://www.chamanvatikagurukul.in/hec" frameborder="0" />
  <frame frameborder="0" noresize />
</frameset>

<!-- pageok -->
<!-- 10 -->
<!-- -->
</html>  

www.harryenglishclub.com

祝你好运

我刚刚对你的网站进行了一次审核,它没有显示你的主页上有
标签,带有宽度或初始比例。我的建议是创建每个页面上都包含的元标题。