Newer
Older
renshu-2021 / syonaimeguri / choice.html
@ItoRino ItoRino on 16 Nov 2021 1 KB add:formとchoiceの追加
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="form.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap" rel="stylesheet">
    
 
    <title>記入フォーム</title>
</head>
<body>
    <div class="container">
        <h1>テンプレート選択</h1>
        <div class="item">
            <div class="inputs">
            <input id="cut" type="radio" name="menu" value="cut"><label for="cut">カジュアル</label>
            <input id="cut-color" type="radio" name="menu" value="cut-color"><label for="cut-color">フォーマル</label>
            <input id="headspa" type="radio" name="menu" value="headspa"><label for="headspa">キュート</label>
            </div>
          </div>

    </div>
    <input type="submit" value="送信する">
 
</body>
</html>