<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Flashcards</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .flashcard {
            background-color: #fff;
            border: 2px solid #3498db;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 20px;
            text-align: center;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
        }

        .flashcard:hover {
            transform: scale(1.05);
        }

        .question {
            font-weight: bold;
            color: #333;
        }

        .answer {
            display: none;
            color: #27ae60;
        }

        .flashcard:hover .answer {
            display: block;
        }
    </style>
</head>
<body>

    <div class="flashcard">
        <div class="question">Luật cao nhất của quốc gia là gì?</div>
        <div class="answer">Hiến Pháp</div>
    </div>

    <div class="flashcard">
        <div class="question">Hiến Pháp có mục đích gì?</div>
        <div class="answer">- thiết lập chánh phủ<br>- mô tả tổ chức chánh phủ<br>- bảo vệ các quyền căn bản của người dân Hoa Kỳ</div>
    </div>

  

</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Flashcards: US Citizenship Test</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f0f0f0;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: flex-start;
        }

        .flashcard {
            background-color: #fff;
            border: 2px solid #3498db;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 300px;
            text-align: center;
            transition: transform 0.2s ease-in-out;
            cursor: pointer;
        }

        .flashcard:hover {
            transform: scale(1.05);
        }

        .question {
            font-weight: bold;
            color: #333;
        }

        .answer {
            display: none;
            color: #27ae60;
        }

        .flashcard:hover .answer {
            display: block;
        }
    </style>
</head>
<body>

    <div class="flashcard">
        <div class="question">What is the supreme law of the land?</div>
        <div class="answer">The Constitution</div>
    </div>

    <div class="flashcard">
        <div class="question">What does the Constitution do?</div>
        <div class="answer">- sets up the government<br>- defines the government<br>- protects basic rights of Americans</div>
    </div>

    <!-- Add more flashcards for the remaining citizenship questions -->

</body>
</html>

Trending