https://c2capp.netlify.app/

Enlaces: 0 encontrados

Los enlaces salientes identificados en la página

Variables JavaScript: 8 encontradas

Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual

NombreTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
$function
jQueryfunction
fetchCurrencyDatafunction
loadInitialDatafunction
convertCurrencyfunction

Mensajes de registro de la consola: 1 encontrados

Mensajes registrados en la consola web

TipoCategoríaRegistrar
errornetwork
URL
https://c2capp.netlify.app/favicon.ico
TEXTO
Failed to load resource: the server responded with a status of 404 ()

HTML

El cuerpo HTML sin procesar de la página

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