2009-08-05から1日間の記事一覧

21: Lesser-know semantic elements

http://dev.opera.com/articles/view/21-lesser-known-semantic-elements/ Highlighting contact information address element は最もおかしな名前を与えられ誤解されている element かもしれない。 この element の意味はページ(あるいはその一部)を書い…

20: HTML forms --- the basics

あまりに長いので最終形態以外のコードは削除することにした。 http://dev.opera.com/articles/view/20-html-forms-the-basics/ Step one: The basic code 簡単なコメントフォームから<form> と </form> があって、その間にいろいろと。 form element: フォームは全てこの…

19: HTML tables

http://dev.opera.com/articles/view/19-html-tables/ The most basic table <table> <tr> <td>Volcano Name</td> <td>Location</td> <td>Last Major Eruption</td> <td>Type of Eruption</td> </tr> <tr> <td>Mt. Lassen</td> <td>California</td> <td>1914-17</td> <td>Explosive Eruption</td> </tr> ... </table> 上記の H…

18: HTML links - let's build a web!

http://dev.opera.com/articles/view/18-html-links-let-s-build-a-web/ What are links? 他のリソース(他の HTML documents、テキストファイル、PDFなど)を指すもの。ブラウザが自動的に追いかける link elements によるリンクと、ユーザーが選択して追う…

car とか cdr とか caddar とかの読み方

twitter での会話を勢いで実装してみた。 最初の ca は「か」、cd は「くだ」 その後は a は「あ」、d は「だ」 最後の r は「ー」 (defun pronounce (function) (let ((name (coerce (symbol-name function) 'list))) (unless (and (eql (first name) #\c) …

17: Images in HTML

http://dev.opera.com/articles/view/17-images-in-html/ A picture says more than a thousand words --or does it? ケータイとかでは画像は表示されないかもしれない ユーザは目が見えないとかで画像を見ることができないかもしれない 異文化圏の人にはそ…