https://c2capp.netlify.app/

ID de l'analyse :
dcc1108d-43fc-4aa0-af7d-b100ef835226Terminée
URL soumise :
https://c2capp.netlify.app/
Fin du rapport :

Liens : 0 trouvé(s)

Liens sortants identifiés à partir de la page

Variables JavaScript : 8 trouvée(s)

Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel

NomType
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
$function
jQueryfunction
fetchCurrencyDatafunction
loadInitialDatafunction
convertCurrencyfunction

Messages de journal de console : 1 trouvé(s)

Messages consignés dans la console web

TypeCatégorieEnregistrement
errornetwork
URL
https://c2capp.netlify.app/favicon.ico
texte
Failed to load resource: the server responded with a status of 404 ()

HTML

Le corps HTML de la page en données brutes

<!DOCTYPE html><html lang="ko"><head>
        <meta charset="UTF-8">
        <title>환율 계산기</title>
        <meta name="description" content="환율계산기">
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
        <meta name="keywords" content="환율">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script src="CoolerFont.js"></script><style>@font-face {font-family: 'Poppins';font-style: normal;font-weight: 400;src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face {font-family: 'Poppins';font-style: normal;font-weight: 400;src: url(https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;} @font-face {font-family: 'GmarketSansMedium';src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/GmarketSansMedium.woff') format('woff');font-weight: normal;font-style: normal;} *{font-family: 'Poppins', sans-serif;}</style>
        <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
        <link rel="stylesheet" href="main.css">        
        <script>
            let err = true;
            if (navigator.userAgent.includes("Chrome") || navigator.userAgent.includes("Safari")) {
                
                err = false;
            } else {
                alert("이 브라우저는 웹키트를 지원하지 않습니다. 웹키트가 지원되는 브라우저를 사용하세요.")
                err = true;
            }
        </script>
    </head>
    <body onload="if (err==true) document.body.innerHTML = `<center><span id='title'>지원 안됨</span><hr noshade='noshade' size='1' width='13%'>웹키트를 지원하는 브라우저를 사용해주세요.</center>`">

        <script src="main.js"></script>
        <center>
            <span id="title">환율계산기</span><hr noshade="noshade" size="1" width="13%"><br><br>

            <select id="toCurrency">
                <option value="krw">한국 원(KRW)</option>
                <option value="usd">미국 달러(USD)</option>
                <option value="cny">중국 위안(CNY)</option>
            </select>

            <input type="number" id="to" placeholder="변환할 통화">
            <p id="foo"></p>
            <select id="fromCurrency">
                <option value="krw">한국 원(KRW)</option>
                <option value="usd" selected="">미국 달러(USD)</option>
                <option value="cny">중국 위안(CNY)</option>
            </select>
            <input type="number" id="from" placeholder="변환된 통화" readonly="">
            <br><br>
            
        </center>
    

</body></html>