https://doc2html.replit.app/

Eingereichte URL:
https://doc2html.replit.app/
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

JavaScript-Variablen · 5 gefunden

Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
uidEventnumber
bootstrapobject

Konsolenprotokoll-Meldungen · 1 gefunden

In der Web-Konsole protokollierte Meldungen

TypKategorieProtokoll
errornetwork
URL
https://doc2html.replit.app/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

Der HTML-Rohtext der Seite

<!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>