https://doc2html.replit.app/

送信済みURL:
https://doc2html.replit.app/
レポート終了日:

リンク · 0件検出

ページから特定された発信リンク

JavaScript変数 · 5件検出

ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です

名前規模
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
uidEventnumber
bootstrapobject

コンソールログメッセージ · 1件検出

Webコンソールにログ記録されたメッセージ

規模分類ログ
errornetwork
URL
https://doc2html.replit.app/favicon.ico
テキスト
Failed to load resource: the server responded with a status of 404 ()

HTML

未加工のHTMLページ本文

<!DOCTYPE html><html lang="en" data-bs-theme="dark"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DOCX to HTML Converter</title>
    <link rel="stylesheet" href="https://cdn.replit.com/agent/bootstrap-agent-dark-theme.min.css">
    <link rel="stylesheet" href="/static/css/custom.css">
</head>
<body>
    <div class="container mt-5">
        <h2 class="mb-4">DOCX to HTML Converter</h2>
        
        <!-- File Upload Section -->
        <div class="card mb-4">
            <div class="card-body">
                <div class="mb-3">
                    <label for="docxFile" class="form-label">Choose a DOCX file</label>
                    <input type="file" class="form-control" id="docxFile" accept=".docx">
                </div>
                <button class="btn btn-secondary" id="convertBtn">Convert to HTML</button>
            </div>
        </div>

        <!-- Editor Section -->
        <div class="row">
            <!-- HTML Editor -->
            <div class="col-md-6">
                <div class="card">
                    <div class="card-header d-flex justify-content-between align-items-center">
                        <h5 class="mb-0">HTML Code</h5>
                        <button class="btn btn-sm btn-secondary" id="copyBtn">Copy HTML</button>
                    </div>
                    <div class="card-body">
                        <textarea id="htmlEditor" class="form-control" rows="20"></textarea>
                    </div>
                </div>
            </div>

            <!-- Preview Section -->
            <div class="col-md-6">
                <div class="card">
                    <div class="card-header">
                        <h5 class="mb-0">Preview</h5>
                    </div>
                    <div class="card-body">
                        <div id="preview" class="preview-content"></div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Toast Notification -->
    <div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
        <div id="toast" class="toast align-items-center text-white bg-success border-0" role="alert" aria-live="assertive" aria-atomic="true">
            <div class="d-flex">
                <div class="toast-body">
                    HTML copied to clipboard!
                </div>
                <button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
            </div>
        </div>
    </div>

    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
    <script src="/static/js/main.js"></script>

</body></html>