webサービス:
CLI:
wget \ --spider \ --recursive \ --level=inf \ --no-verbose \ --no-directories \ --execute robots=off \ -o wget.log \ https://example.com/
pre { white-space: -moz-pre-wrap; /* Mozilla */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* CSS3 */ word-wrap: break-word; /* IE 5.5+ */ }
IEやNetscapeはタダのボタンとして動作するが、Firefox2.0やOpera9.5はsubmitとして動作する。
確実にsubmitさせたいなら、type="submit"を付ける。
<html> <head> <meta http-equiv="refresh" content="0; url=http://www.exmaple.com/logined.html"> <script type="text/javascript"> <!-- location.href = "http://www.exmaple.com/logined.html"; //--> </script> </head> <body> <p>ログインが完了しました。<a href="http://www.exmaple.com/logined.html">続けるにはここをクリックしてください</a>。</p> </body> </html>
外部ファイルをphpとかにすれば、動的ファイルを埋め込める。
AddType application/x-httpd-php .htm .html
<iframe src="xx.html" height=300 width=300> この部分は iframe 対応のブラウザで見てください。 </iframe>
<html> <head> <title>test</title> </head> <body> header <br/> <!--[if IE]> <object classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" data="some.html" style="width:100;height:100px"> <p>non object</p> </object> <![endif]--> <!--[if !IE]> <--> <object type="text/html" data="some.html"> <p>non object</p> </object> <!--> <![endif]--> <br/> footer </body> </html>
<SCRIPT src="header.js"></SCRIPT>
html,Compact HTML(CHTML)の文法チェックをして点数をつけてくれる。オープンソース
CSSで、デザインを整えるとして、ブラウザ毎のデフォルトスタイルを消しておく。
* { margin: 0; padding: 0; font-style: normal; font-weight: normal; }
最近のブラウザでも表示は厳しい。
スタイルシートで以下のように指定する。IE6で確認
BODY { word-break: break-all; } style="word-break: break-all;"
word-break | 説明 |
---|---|
normal | 通常の状態 |
break-all | 単語に関係なく改行 |
keep-all | 単語の途中では改行しないようにする |