無理しないでゆっくり休んでね!

HTML サンプル

よく使うタグです。

HTML基本ドキュメント

<!DOCTYPE html>
<html>
<head>
<title>タイトル</title>
</head>
<body>
内容
</body>
</html>

基本タグ

<h1>1番大きい見出し</h1>
<h2>2番目に大きい見出し</h2>
<h3>3番目に大きい見出し</h3>
<h4>4番目に大きい見出し</h4>
<h5>5番目に大きい見出し</h5>
<h6>1番小さい見出し</h6>
 
<p>段落</p>
<br> (改行)
<hr> (水平線)
<!-- コメント -->

テキストの書式設定

<b>太字</b>
<em>斜体</em>
<i>斜体</i>
<u>下線</u>
<strong>重要</strong>
<small>小さいフォント</small>
<sub>下付き</sub>と<sup>上付き</sup>
<mark>マーカー</mark>

リンク

<!-- 普通のリンク -->
<a href="https://codinghaku.com/">テキスト</a>

<!-- 画像リンク -->
<a href="https://codinghaku.com/"><img src="URL" alt="テキスト"></a>

<!-- メールリンク -->
 <a href="mailto:〇〇@〇〇.com">メールを送る</a>

<!-- ジャンプ -->
<a id="tips">〇〇へジャンプ</a>
<a href="#tips">到着</a>

画像

<img decoding="async" loading="lazy" src="URL" alt="テキスト" height="42" width="42">

スタイル・ブロック

<style type="text/css">
h1 {color:blue;}
p {color:red;}
</style>
<div>ブロックレベル</div>
<span>インライン</span>

リスト

<!-- 順序なし -->
<ul>
    <li>項目</li>
    <li>項目</li>
</ul>

<!-- 順序あり -->
<ol>
    <li>1</li>
    <li>2</li>
</ol>

<!-- 定義リスト -->
<dl>
  <dt>項目1</dt>
    <dd>説明1</dd>
  <dt>項目2</dt>
    <dd>説明2</dd>
</dl>

表(Tables)

<table>
  <tr>
    <th>項目</th>
    <th>項目</th>
  </tr>
  <tr>
    <td>データ</td>
    <td>データ</td>
  </tr>
</table>

フォーム

<form action="demo_form.php" method="post/get">
<input type="text" name="email" size="40" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit" value="Send">
<input type="reset">
<input type="hidden">
<select>
<option>りんご</option>
<option selected="selected">バナナ</option>
<option>もも</option>
</select>
<textarea name="comment" rows="60" cols="20"></textarea>
</form>

コメント

タイトルとURLをコピーしました