3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

日本語のページを作ったのにChromeで開くと翻訳ツールが出てウザイ

Posted at

以下のように記述しているにも関わらず翻訳ツールが立ち上がるのでウザイ

<!DOCTYPE html>
<html lang="ja">
 <head>
  <meta charset="utf-8" />
  <title>ページタイトル</title>
 </head>
 <body>
  …省略…
 </body>
</html>

以下のような直したらでなくなった

<!DOCTYPE html>
<html lang="ja" xml:lang="ja">
 <head>
  <meta charset="utf-8" />
  <title>ページタイトル</title>
 </head>
 <body>
  …省略…
 </body>
</html>
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?