Загрузка данных


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <title>Вариант 2 - Тест-опросник</title>
</head>
<body>
    <h1><center><font face="Verdana" color="#34495e" size="5">Тест по HTML</font></center></h1>
    
    <form action="#" method="post">
        <table border="0" width="600" cellpadding="10">
            <tr>
                <td bgcolor="#ecf0f1" style="border-left: 5px solid #3498db">
                    <font face="Verdana" color="#2c3e50" size="4"><b>Какой тег используется для создания заголовка первого уровня?</b></font>
                </td>
            </tr>
            <tr>
                <td bgcolor="#ffffff">
                    <font face="Arial" color="#555" size="3">
                        <input type="radio" name="question1" value="a"> <head><br><br>
                        <input type="radio" name="question1" value="b"> <h1><br><br>
                        <input type="radio" name="question1" value="c"> <header><br><br>
                        <input type="radio" name="question1" value="d"> <title>
                    </font>
                </td>
            </tr>
            <tr>
                <td>
                    <input type="submit" value="Ответить" style="font-family: Arial; font-size: 16px; font-weight: bold; color: white; background-color: #27ae60; padding: 10px 20px; border: none; cursor: pointer">
                </td>
            </tr>
        </table>
    </form>
</body>
</html>