Newer
Older
renshu-2022 / aiso / send.html
@相蘇隼 相蘇隼 on 16 Dec 2022 692 bytes Update send.html
<!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">
    <title>送信元のHTML</title>
    <style>
        form,p {
            margin: 1em;
            border: solid 1px #a4a4a4;
            padding: 1em;
            border-radius: 10px;
        }
    </style>
</head>
<body>
    <form action="./receive.html" method="GET">
        <div>あなたの記録を入力してください</div>
        <input type="text" name="m">分
        <input type="text" name="s">秒
        <input type="submit" value="送信">
    </form>
</body>
</html>