HTML便利帳
基本一式
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
form
input
<input type="" name="" value="">
- type:text,date,time,radio
required="required"
:入力必須placeholder=""
:未入力で表示されるテキスト
button
<button type="submit">送信</button>
select
<select name="">
<option value=""></option>
</select>
色々
- figure
<figure><img src="" alt=""><figcaption></figcaption></figure>