diff --git a/blog.html b/blog.html index 6027d2f..8f5b6ac 100644 --- a/blog.html +++ b/blog.html @@ -1,8 +1,9 @@ - + + -個人ブログ +個人ブログ
@@ -42,4 +43,4 @@
  • Nobody’s Perfect [随筆・コラム] [旅行記] - + diff --git a/index.html b/index.html index e2a1972..1fc0bc8 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,21 @@ - + + -ケンサク +ケンサク

    ケンサク

    -

    1. ジャンル

    +
    + +
      +
    • +
    +
    + +

    1. ジャンル別リンク集

    プログラミング
    @@ -17,3 +25,5 @@
    個人ブログ
    知人などのウェブサイト
    + + diff --git a/news.html b/news.html index 90b63c7..41b0bc8 100644 --- a/news.html +++ b/news.html @@ -1,8 +1,9 @@ - + + -時事問題・ニュース +時事問題・ニュース
    @@ -25,4 +26,4 @@
    -

    2. 無題

    + diff --git a/programming.html b/programming.html index 6fd681b..e2cc642 100644 --- a/programming.html +++ b/programming.html @@ -1,30 +1,67 @@ - + + -プログラミング +プログラミング
    Index
    ケンサク
    -
    Date
    2024-03-26
    +
    Date
    2024-04-28

    プログラミング

    -

    1. 歴史的なウェブサイト

    +

    1. ウェブ

    +

    記事

    +
    日本最初のホームページ
    日本最初の HTML は 1992年2月に非公開で作成され、同年9月30日に公開された
    +
    ごく簡単なHTMLの説明
    +
    HTML4 をベースとしつつ、HTML 5 の事情も踏まへた解説
    + +
    良質なテキストサイトの爲のISO-HTML入門
    +
    ISO-HTML をベースとした解説
    + +
    はじめてのWebドキュメントづくり
    +
    HTML4 の易しい解説
    + +
    + +

    仕様など

    + +
    + +
    HTML Standard 日本語
    +
    「WHATWG 版 HTML」仕様書の日本語訳
    + +
    ハイパテキストマーク付け言語(JIS X 4156:2000)の利用者ガイド
    +
    ISO-HTML の利用者ガイドの日本語訳
    + +
    HTML 4.01 Specification (ja)
    +
    HTML 4.01 の仕様書の日本語版 (廃止された規格だが参考になる)
    + +
    HTML 4.0 Reference(jp)
    +
    「HTML 4.0 参考書」(廃止された規格だが参考になる)
    + +
    Guide to Cascading Style Sheets(jp)
    +
    CSS1 の頃の解説 (内容の大半は今でも有效なはず)
    + +
    + +

    2. プライバシー

    + +
    +
    XMPP clients - digdeeper.club
    XMPPに對するセキュリティのレビュー(英語) 有益さうなので追加した。
    digdeeper.club
    英語でプライバシーに必要な拡張機能やブラウザーレビューをしている
    - -
    -

    2. 無題

    + diff --git a/style.css b/style.css index 3e89969..756d61c 100644 --- a/style.css +++ b/style.css @@ -1,45 +1,102 @@ -/* Color */ +/* Kensaku Style, 2024-04-03 */ +html, body, h1, h2, h3, +form, p, hr, +dl, dt, dd, ul, ol, li, +a, input + { + border: none; + font-size: 100%; + font-weight: inherit; + margin: 0; + padding: 0; + } + +/* colors */ body { background: #120f12; color: #fcfcfc; } a:link { color: #6aa6eb; } a:visited { color: #ae6bdb; } -a:visited { color: #ea79d8; } a:active { color: #f35869; } a:hover { background: #443b44; } hr { border-color: #988f98; } -/* Font */ +input + { + background: #443b44; + border-color: #746c75; + color: #fcfcfc; + } -body { line-height: 1.5; } +input[type=submit] + { + background: #cfcbcf; + border-color: #cfcbcf; + color: #120f12; + } + +input[type=submit]:hover + { + background: #746c75; + border-color: #746c75; + color: #fcfcfc; + } + +/* end colors */ + +body + { + margin: 1em 0 0 1em; + line-height: 1.5; + } h1, h2, h3 { font-size: larger; font-weight: bold; + margin-bottom: 0.5em; } -h1 +dl, ul, ol, p { + margin-bottom: 1em; } -dl, dt, dd, ul, ol, li, p, a +dd, li { - font-size: 100%; - font-weight: inherit; + margin-left: 2em; } -/* Decoration */ - -a { text-decoration: underline; } -a:hover { text-decoration: none; } - -dt { font-weight: bold; } +dt + { + font-weight: bold; + } hr { border-style: solid; border-width: thin 0 0; - height: 0; - margin: 0; - padding: 0; + } + +a + { + text-decoration: underline; + } + +a:hover + { + text-decoration: none; + } + +form li + { + list-style: none; + } + +input + { + border-style: solid; + border-width: thin; + margin: 0 1em 0 0; + padding: 0 0.5em; + line-height: 2; }