Skip to content

Instantly share code, notes, and snippets.

@takahub1
Created May 23, 2017 15:22
Show Gist options
  • Save takahub1/0be3c18cf53952573b493bee12756c3f to your computer and use it in GitHub Desktop.
Save takahub1/0be3c18cf53952573b493bee12756c3f to your computer and use it in GitHub Desktop.
htmlのチートシート
<html>
<head>
<title>タイトルを指定する</title>
</head>
<body>
ここに内容を書く</br>
<h1>見出し1</h1>
<h2>見出し2</h2>
<h3>見出し3</h3>
<h4>見出し4</h4>
<h5>見出し5</h5>
<a href="index2.html">ここをクリックすると飛ぶ。</a></br>
<ul>
<li>箇条書き</li>
<li>箇条書き</li>
</ul>
<p><img src="test.png"></p>
<!-- コメント -->
<table border="1">
<tr>
<td>セル1</td>
<td>セル2</td>
</tr>
<tr>
<td>セル3</td>
<td>セル4</td>
</tr>
</table></br>
テキスト入力:
<input type="text" size="30"></br>
<input type="button" value="送信"></br>
<select>
<option>メニュー1</option>
<option>メニュー2</option>
<option>メニュー3</option>
<option>メニュー4</option>
<option>メニュー5</option>
</select>
</body>
<footer>
製作者:pot</br>
更新日:2017-5-23
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment