Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!DOCTYPE html>
<html lang="ja">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>日本史クイズ</title>
    <link rel="stylesheet" href="styles.css">
</head>

<body>

    <div class="container" id="container">
        <!-- 全問題数表示 -->
        <div class="quiz-info">
            全 <span id="total-questions"></span> 問
        </div>

        <h1>日本史クイズ</h1>

        <div class="quiz-container" id="quiz-container">
            <div class="question-number" id="question-number"></div>
            <div class="question" id="question"></div>
            <div class="grid-container" id="choices-container"></div>
        </div>

        <div class="result-section" id="answer-section">
            <h2>回答結果</h2>
            <p id="answer-result"></p>
            <div id="next-question" onclick="nextQuestion()">次の問題へ</div>
        </div>

        <div id="final-result" class="final-section">
            <h2>最終結果</h2>
            <p id="score"></p>
            <div id="restart-quiz" onclick="restartQuiz()">もう一度遊ぶ</div>
        </div>
    </div>

    <!-- 先に問題ファイルを読み込む -->
    <script src="quizData.js"></script>
    <!-- 次にメインのスクリプトを読み込む -->
    <script src="script.js"></script>
</body>

</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console