Skip to content

Instantly share code, notes, and snippets.

@ozh
Last active November 29, 2022 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozh/4a855d74cae90b55a2450700e99af0d5 to your computer and use it in GitHub Desktop.
Save ozh/4a855d74cae90b55a2450700e99af0d5 to your computer and use it in GitHub Desktop.
YOURLS page title test pages
Various files, from actual web sites, mixing different content type as served by the server and as declared by the HTML
<?php header( 'Content-type: text/html; charset=GB2312' ); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="gbk" />
<title>天天正能量官网</title>
</head>
<body>
<p>Title: 天天正能量官网</p>
</body>
</html>
<?php header( 'Content-type: text/html;charset=utf-8' ); ?>
<!DOCTYPE html>
<html lang="de-DE">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>begrüßt Flüchtlinge</title>
</head>
<body>
<p>Title: begrüßt Flüchtlinge</p>
</body>
</html>
<?php header( 'Content-type: text/html; charset=utf-8' ); ?>
<!DOCTYPE html>
<html>
<meta charset='utf-8'>
<title>ozh (྅༻ Ǭɀħ ༄༆ཉ)</title>
</head>
<body>
<p>Title: ozh (྅༻ Ǭɀħ ༄༆ཉ)</p>
</body>
</html>
<?php header( 'Content-type: text/html;charset=utf-8' ); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>חדשות, ידיעות מהארץ והעולם - עיתון הארץ</title>
<link rel="canonical" href="http://www.haaretz.co.il"/>
</head>
<body>
<p>Title: חדשות, ידיעות מהארץ והעולם - עיתון הארץ</p>
</body>
</html>
<?php header( 'Content-type: text/html;charset=utf-8' ); ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>講談社 夏☆電書 特集</title>
</head>
<body>
<p>Title: 講談社 夏☆電書 特集</p>
</body>
</html>
<?php header( 'Content-type: text/html' ); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru" xmlns:fb="http://www.facebook.com/2008/fbml" >
<head>
<title>Правда.Ру: Аналитика и новости</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<body>
<p>Title: Правда.Ру: Аналитика и новости</p>
</body>
</html>
<?php header( 'Content-type: text/html; charset=UTF-8' ); ?>
<!DOCTYPE html>
<html lang="zh-CN" dir="ltr" class="client-nojs">
<head>
<meta charset="UTF-8" />
<title>维基百科,自由的百科全书</title>
</head>
<body>
<p>Title: 维基百科,自由的百科全书</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment