Skip to content

Instantly share code, notes, and snippets.

@becolomochi
Last active April 21, 2019 22:00
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 becolomochi/0e9b0215e7f1d25a0eee94419297e13a to your computer and use it in GitHub Desktop.
Save becolomochi/0e9b0215e7f1d25a0eee94419297e13a to your computer and use it in GitHub Desktop.
リセットCSS検証用HTML
<section>
<h1>見出し1</h1>
<h2>見出し2</h2>
<h3>見出し3</h3>
<p>本文1</p>
<p>本文2本文2<br>改行。本文2本文2本文2本文2本文2</p>
<p>
<a href="hoge">リンク</a><strong>太字</strong><em>強調</em><small>小さい文字</small>
</p>
<h4>見出し4</h4>
<h5>見出し5</h5>
<h6>見出し6</h6>
</section>
<section>
<ul>
<li>リスト1</li>
<li>リスト2</li>
<li>リスト3</li>
</ul>
<ol>
<li>数字リスト1</li>
<li>数字リスト2</li>
<li>数字リスト3</li>
</ol>
<dl>
<dt>定義リストタイトル</dt>
<dd>定義リストテキスト</dd>
<dt>定義リストタイトル</dt>
<dd>定義リストテキスト</dd>
</dl>
</section>
<section>
<form>
<div><input type="text" value="テキストインプット"></div>
<div>
<select
><option>セレクト</option></select
>
</div>
<div><textarea>テキストエリア</textarea></div>
<div>
<label><input type="checkbox">チェックボックス</label>
</div>
<div>
<label><input type="radio">ラジオボタン</label>
</div>
<div><button type="button">ボタン</button></div>
</form>
</section>
<section>
<pre>整形済みテキスト </pre>
<blockquote>引用テキスト</blockquote>
</section>
<section>
<table>
<tbody>
<tr>
<th>テーブル見出し</th>
<th>テーブル見出し</th>
<th>テーブル見出し</th>
</tr>
<tr>
<td>セル</td>
<td>セル</td>
<td>セル</td>
</tr>
<tr>
<td>セル</td>
<td>セル</td>
<td>セル</td>
</tr>
</tbody>
</table>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment