リセットCSS検証用HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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