- ID scansione:
- dcc1108d-43fc-4aa0-af7d-b100ef835226Fatto
- URL inviato:
- https://c2capp.netlify.app/
- Report terminato:
Link · 0 trovati
I link in uscita identificati dalla pagina
Variabili JavaScript · 8 trovate
Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente
Nome | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
$ | function |
jQuery | function |
fetchCurrencyData | function |
loadInitialData | function |
convertCurrency | function |
Messaggi di log della console · 1 trovati
Messaggi registrati nella console Web
Tipo | Categoria | Log |
---|---|---|
error | network |
|
HTML
Il corpo HTML non elaborato della pagina
<!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>