CINXE.COM
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <style> html, body, #wrap { height: 100%; } body, h1, h2, ul, li, p { margin: 0; padding: 0; } body { background-color: #fff; } ul, ol { list-style: none; } a { text-decoration: none; } .blind { overflow: hidden; position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0 0 0 0); } #wrap { position: relative; margin: 0 auto; padding: 0 55px; min-width: 970px; min-height: 200px; text-align: center; letter-spacing: -0.5px; } .logo { padding-top: 60px; line-height: 1px; } .description { margin-top: 65px; line-height: 34px; font-size: 28px; color: #1e1e23; } .title { margin-top: 24px; font-size: 48px; font-weight: 800; line-height: 64px; color: #000; } .list { margin-top: 60px; font-size: 0; white-space: nowrap; } .item { display: inline-block; vertical-align: top; } .item+.item { margin-left: 40px; } .link { display: block; width: 300px; height: 300px; background-color: #f6f8fa; border-radius: 30px; } .link:hover { background-color: #edf1f3; } .download { display: inline-block; vertical-align: top; margin-top: 30px; width: 161px; border-radius: 24px; font-size: 20px; font-weight: bold; line-height: 48px; letter-spacing: -0.5px; color: #fff; } .link.edge .logo_browser { padding-top: 56px; } .link.edge .download { margin-top: 29px; background-color: #1967d2; } .link.chrome .logo_browser { padding-top: 45px; } .link.chrome .download { width: 189px; background-color: #dc4d41; } .link.whale .logo_browser { padding-top: 48px; } .link.whale .download { width: 173px; background-color: #08c3a7; } .detail { padding-top: 80px; left: 0; right: 0; bottom: 40px; margin: auto 0; line-height: 24px; font-size: 20px; color: #767678; letter-spacing: -0.5px; } .sub { display: block; margin-top: 10px; line-height: 22px; font-size: 18px; color: #aaaaac; } </style> <script> var titleByLang = { "ko": "지원하지 않는 브라우저", "en": "Not Support Browser", "ja": "サポートしていないブラウザです", "zh": "不支持的浏览器", "vi": "trình duyệt không hỗ trợ", "fr": "Navigateur non pris en charge", "es": "Navegadores no apoyados", "de": "Nicht unterstützte Browser" } // Array.from() emulate if (!Array.from) { Array.from = (function () { var toStr = Object.prototype.toString; var isCallable = function (fn) { return typeof fn === 'function' || toStr.call(fn) === '[object Function]'; }; var toInteger = function (value) { var number = Number(value); if (isNaN(number)) { return 0; } if (number === 0 || !isFinite(number)) { return number; } return (number > 0 ? 1 : -1) * Math.floor(Math.abs(number)); }; var maxSafeInteger = Math.pow(2, 53) - 1; var toLength = function (value) { var len = toInteger(value); return Math.min(Math.max(len, 0), maxSafeInteger); }; return function from(arrayLike) { var C = this; var items = Object(arrayLike); if (arrayLike == null) { throw new TypeError("Array.from requires an array-like object - not null or undefined"); } var mapFn = arguments.length > 1 ? arguments[1] : void undefined; var T; if (typeof mapFn !== 'undefined') { if (!isCallable(mapFn)) { throw new TypeError('Array.from: when provided, the second argument must be a function'); } if (arguments.length > 2) { T = arguments[2]; } } var len = toLength(items.length); var A = isCallable(C) ? Object(new C(len)) : new Array(len); var k = 0; var kValue; while (k < len) { kValue = items[k]; if (mapFn) { A[k] = typeof T === 'undefined' ? mapFn(kValue, k) : mapFn.call(T, kValue, k); } else { A[k] = kValue; } k += 1; } A.length = len; return A; }; }()); } document.addEventListener("DOMContentLoaded", function () { var sLang; if (navigator.language) { sLang = navigator.language; } else if (navigator.userLanguage) { sLang = navigator.userLanguage; } clientLanguage = sLang.split(/[-_]/)[0]; var elementsWithLangAttribute = document.querySelectorAll("[lang]"); document.title = titleByLang[clientLanguage]; var nonEnElements = Array.from(elementsWithLangAttribute).filter(function (element) { return element.getAttribute("lang") == clientLanguage; }); nonEnElements.forEach(function (element) { element.style.display = "inline-block"; }); }); </script> </head> <body> <div id="wrap"> <p style="display: none" lang="ko" class="description">현재 보안 업데이트를 지원하지 않는 브라우저를 사용 중입니다</p> <p style="display: none" lang="en" class="description">You are in no support security updates any more</p> <p style="display: none" lang="ja" class="description">現在セキュリティアップデートをサポートしないブラウザを使用中です</p> <p style="display: none" lang="zh" class="description">目前使用安全更新不支持安全更新的浏览器</p> <p style="display: none" lang="vi" class="description">Hiện tại tôi đang sử dụng trình duyệt không hỗ trợ cập nhật bảo mật.</p> <p style="display: none" lang="fr" class="description">Un navigateur qui ne supporte pas les mises à jour de sécurité est actuellement utilisé</p> <p style="display: none" lang="es" class="description">Está usando un navegador que no apoya actualizaciones de seguridad.</p> <p style="display: none" lang="de" class="description">Sie verwenden derzeit einen Browser, der keine Sicherheitsupdates</p> </br> <h2 style="display: none" lang="ko" class="title">아래 브라우저에서 더 안전하게 서비스를 이용하세요</h2> <h2 style="display: none" lang="en" class="title">Secure your internet with the browser below</h2> <h2 style="display: none" lang="ja" class="title">以下のブラウザでより安全にサービスをご利用ください</h2> <h2 style="display: none" lang="zh" class="title">请在下面的浏览器中更安全地使用该服务</h2> <h2 style="display: none" lang="vi" class="title">Vui lòng sử dụng dịch vụ an toàn hơn trong trình duyệt dưới đây.</h2> <h2 style="display: none" lang="fr" class="title">Utilisez le service plus en sécurité dans le navigateur ci-dessous.</h2> <h2 style="display: none" lang="es" class="title">Utilice el servicio de forma más segura en el navegador de abajo.</h2> <h2 style="display: none" lang="de" class="title">Nutzen Sie unsere Dienste sicherer im untenstehenden Browser</h2> <ul class="list"> <li class="item"> <a href="https://whale.naver.com/download" target="_blank" class="link whale"> <div class="logo_browser"> <svg width="138" height="138" viewBox="0 0 160 160" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M10.133 40.907C23.84 16.48 49.973 0 79.947 0c26.826 0 50.613 13.227 65.12 33.493.053.054-7.52 50.774-64.694 50.774-71.466 0-73.493-37.6-70.24-43.36z" fill="url(#d1hhxj0vua)" /> <path d="M145.067 33.493c-.054 0-15.147.8-27.627 12-10.827 9.76-17.76 23.2-21.653 33.707 0 0-9.494 26.293-17.494 40.96-8.8 16.053-24.907 27.893-33.76 31.573A79.713 79.713 0 0 0 79.946 160c44.161 0 80.001-35.84 80.001-80 0-17.334-5.494-33.387-14.88-46.507z" fill="url(#4z9dh69mob)" /> <path d="M93.76 46.4C68.533 63.2 60.8 75.52 43.68 75.52c-14.293 0-37.653-14.826-26.72-44.106a9.13 9.13 0 0 1 1.173-2.134C6.773 43.094 0 60.747 0 80c0 33.227 20.213 61.707 49.067 73.814a66.73 66.73 0 0 0 12.32-7.947c4.8-3.627 8.693-7.627 12.266-12.64 7.04-9.813 12.694-23.307 21.227-44.96 13.227-33.44 23.68-45.813 50.187-54.773-.107 0-24.267-5.12-51.307 12.906z" fill="url(#uy42giaytc)" /> <path d="M26.507 139.306c10.986-12.693 15.787-23.413 19.893-38.24H2.987c4 14.934 12.32 28.16 23.52 38.24z" fill="url(#7w05oy7akd)" /> <path d="M26.4 139.413c-7.413 7.36-16.373 13.173-26.4 16.853 15.36 5.547 34.4 4.96 49.013-2.453" fill="url(#e4mz6vzhce)" /> <path d="M83.787 13.866c-1.014 0-1.814.8-1.814 1.814 0 1.013.8 1.813 1.814 1.813 1.013 0 1.813-.8 1.813-1.813.053-.96-.8-1.814-1.813-1.814z" fill="#fff" /> <path opacity=".4" d="M77.12 39.146a1.12 1.12 0 1 0 0-2.24 1.12 1.12 0 0 0 0 2.24z" fill="#fff" /> <path d="M48.747 48.693c-.907 0-1.654.747-1.654 1.654 0 .906.747 1.653 1.654 1.653.906 0 1.653-.747 1.653-1.653 0-.907-.747-1.654-1.653-1.654z" fill="#fff" /> <path opacity=".2" d="M34.347 40.32a.899.899 0 0 0-.907.907c0 .48.373.907.907.907.48 0 .906-.374.906-.907a.899.899 0 0 0-.906-.907zM104.16 20.96a.82.82 0 0 0-.8.8c0 .427.373.8.8.8a.82.82 0 0 0 .8-.8c0-.427-.32-.8-.8-.8zM54.613 36.853a.616.616 0 0 0-.64.64c0 .374.267.64.64.64s.64-.266.64-.64c-.053-.32-.32-.64-.64-.64z" fill="#fff" /> <path opacity=".4" d="M59.147 28.267c-.694 0-1.28.586-1.28 1.28 0 .693.586 1.28 1.28 1.28.693 0 1.28-.587 1.28-1.28 0-.694-.534-1.28-1.28-1.28z" fill="#fff" /> <path d="M79.947 84.747c2.415 0 4.373-2.197 4.373-4.907s-1.958-4.906-4.373-4.906c-2.416 0-4.374 2.196-4.374 4.906 0 2.71 1.958 4.907 4.374 4.907z" fill="url(#tkrewikapf)" /> <defs> <linearGradient id="d1hhxj0vua" x1="77.153" y1=".179" x2="77.153" y2="57.946" gradientUnits="userSpaceOnUse"> <stop stop-color="#0032B4" /> <stop offset=".104" stop-color="#0630A4" /> <stop offset=".296" stop-color="#0E2C8C" /> <stop offset=".499" stop-color="#142A7B" /> <stop offset=".722" stop-color="#182871" /> <stop offset="1" stop-color="#19286E" /> </linearGradient> <linearGradient id="4z9dh69mob" x1="102.235" y1="34.019" x2="102.235" y2="157.46" gradientUnits="userSpaceOnUse"> <stop stop-color="#ECF6F6" /> <stop offset="1" stop-color="#CDD7D7" /> </linearGradient> <linearGradient id="uy42giaytc" x1="72.5" y1="28.035" x2="72.5" y2="157.22" gradientUnits="userSpaceOnUse"> <stop offset=".201" stop-color="#00EBBE" /> <stop offset=".39" stop-color="#00E6BE" /> <stop offset=".605" stop-color="#00D9C0" /> <stop offset=".832" stop-color="#00C2C2" /> <stop offset=".904" stop-color="#00B9C3" /> </linearGradient> <linearGradient id="7w05oy7akd" x1="24.631" y1="161.066" x2="24.631" y2="99.624" gradientUnits="userSpaceOnUse"> <stop stop-opacity=".3" /> <stop offset=".995" stop-opacity="0" /> </linearGradient> <linearGradient id="e4mz6vzhce" x1="24.494" y1="28.035" x2="24.494" y2="157.219" gradientUnits="userSpaceOnUse"> <stop offset=".201" stop-color="#00EBBE" /> <stop offset=".39" stop-color="#00E6BE" /> <stop offset=".605" stop-color="#00D9C0" /> <stop offset=".832" stop-color="#00C2C2" /> <stop offset=".904" stop-color="#00B9C3" /> </linearGradient> <linearGradient id="tkrewikapf" x1="79.947" y1="54.644" x2="79.947" y2="113.062" gradientUnits="userSpaceOnUse"> <stop stop-color="#21CCB4" /> <stop offset=".129" stop-color="#205DB6" /> <stop offset=".19" stop-color="#1F2DB7" /> <stop offset=".239" stop-color="#1E2CAA" /> <stop offset=".37" stop-color="#1C298A" /> <stop offset=".508" stop-color="#1A2672" /> <stop offset=".652" stop-color="#192461" /> <stop offset=".807" stop-color="#182356" /> <stop offset=".993" stop-color="#182353" /> </linearGradient> </defs> </svg> </div> <span style="display: none" lang="ko" class="download">Whale 다운로드</span> <span style="display: none" lang="en" class="download">Download Whale</span> <span style="display: none" lang="ja" class="download">Whaleダウンロード</span> <span style="display: none" lang="zh" class="download">Whale下载</span> <span style="display: none" lang="vi" class="download">Tải Whale về máy</span> <span style="display: none" lang="fr" class="download">Télécharger Whale</span> <span style="display: none" lang="es" class="download">Descarga de Whale</span> <span style="display: none" lang="de" class="download">Download Whale</span> </a> </li> <li class="item"> <a href="https://google.com/chrome" target="_blank" class="link chrome"> <div class="logo_browser"> <svg xmlns="http://www.w3.org/2000/svg" width="138" height="138" viewBox="0 0 160 160" fill="none"> <mask id="a" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#a)"> <path fill="#DB4437" d="M12.7 0v98.182h35.809L80 43.636h80V0H12.7z" /> <path fill="url(#b)" d="M12.7 0v98.182h35.809L80 43.636h80V0H12.7z" /> </g> <mask id="c" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#c)"> <path fill="#3E2723" fill-opacity=".15" d="m49.373 97.864-36.21-62.1-.527.909 35.946 61.636.79-.445z" /> </g> <mask id="d" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#d)"> <path fill="#0F9D58" d="M0 160h76.155l35.345-35.345V98.182H48.51L0 14.982V160z" /> <path fill="url(#e)" d="M0 160h76.155l35.345-35.345V98.182H48.51L0 14.982V160z" /> </g> <mask id="f" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#f)"> <path fill="#263238" fill-opacity=".15" d="m110.764 99.391-.755-.436-34.9 61.046h1.046l34.636-60.582-.027-.028z" /> </g> <mask id="g" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#g)"> <mask id="h" width="112" height="146" x="0" y="14" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <path fill="#fff" fill-rule="evenodd" d="M0 160h76.155l35.345-35.345V98.182H48.51L0 14.982V160z" clip-rule="evenodd" /> </mask> <g mask="url(#h)"> <path fill="#FFCD40" d="m80 43.637 31.5 54.545L76.154 160H160V43.637H80z" /> <path fill="url(#i)" d="m80 43.637 31.5 54.545L76.154 160H160V43.637H80z" /> </g> </g> <mask id="j" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#j)"> <path fill="#FFCD40" d="m80 43.637 31.5 54.545L76.154 160H160V43.637H80z" /> <path fill="url(#k)" d="m80 43.637 31.5 54.545L76.154 160H160V43.637H80z" /> </g> <mask id="l" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#l)"> <mask id="m" width="84" height="118" x="76" y="43" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <path fill="#fff" fill-rule="evenodd" d="m80 43.637 31.5 54.545L76.154 160H160V43.637H80z" clip-rule="evenodd" /> </mask> <g mask="url(#m)"> <path fill="#DB4437" d="M12.7 0v98.182h35.809l31.49-54.546H160V0H12.7z" /> <path fill="url(#n)" d="M12.7 0v98.182h35.809l31.49-54.546H160V0H12.7z" /> </g> </g> <mask id="o" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#o)"> <path fill="url(#p)" d="M80 43.637v19.045l71.273-19.045H80z" /> </g> <mask id="q" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#q)"> <mask id="r" width="148" height="99" x="12" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <path fill="#fff" fill-rule="evenodd" d="M12.7 0v36.673l35.809 61.509L80 43.636h80V0H12.7z" clip-rule="evenodd" /> </mask> <g mask="url(#r)"> <path fill="#0F9D58" d="M0 160h76.155l35.345-35.345V98.182H48.51L0 14.982V160z" /> <path fill="url(#s)" d="M0 160h76.155l35.345-35.345V98.182H48.51L0 14.982V160z" /> </g> </g> <mask id="t" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#t)"> <path fill="url(#u)" d="m12.7 36.773 52.045 52.036-16.236 9.373L12.7 36.772z" /> </g> <mask id="v" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#v)"> <path fill="url(#w)" d="m76.21 159.9 19.054-71.09 16.236 9.372L76.21 159.9z" /> </g> <mask id="x" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#x)"> <circle cx="80" cy="80" r="36.364" fill="#F1F1F1" /> <circle cx="80" cy="80.001" r="29.091" fill="#4285F4" /> </g> <mask id="y" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#y)"> <path fill="#3E2723" fill-opacity=".2" d="M80 42.727c-20.082 0-36.364 16.282-36.364 36.364v.91c0-20.083 16.282-36.364 36.364-36.364h80v-.91H80z" /> <path fill="#fff" fill-opacity=".1" d="M111.455 98.182c-6.291 10.854-18.01 18.182-31.455 18.182-13.454 0-25.173-7.328-31.464-18.182H48.5L0 14.982v.909l48.51 83.2h.035c6.291 10.855 18.01 18.182 31.464 18.182 13.445 0 25.164-7.318 31.455-18.182h.045v-.91h-.054z" /> <path fill="#3E2723" d="M80.91 43.637c-.155 0-.3.018-.455.027 19.872.245 35.909 16.41 35.909 36.336 0 19.928-16.037 36.091-35.91 36.337.155 0 .3.027.455.027 20.082 0 36.364-16.282 36.364-36.364 0-20.081-16.282-36.363-36.364-36.363z" opacity=".1" /> <path fill="#fff" fill-opacity=".2" d="M111.818 99.39a36.11 36.11 0 0 0 4.882-18.145c0-3.836-.6-7.527-1.7-10.99.864 3.109 1.364 6.372 1.364 9.754a36.11 36.11 0 0 1-4.882 18.145l.018.037-35.346 61.818h1.055l34.627-60.582-.018-.036z" /> </g> <mask id="z" width="160" height="160" x="0" y="0" maskUnits="userSpaceOnUse" style="mask-type:alpha"> <circle cx="80" cy="80" r="80" fill="#fff" /> </mask> <g mask="url(#z)"> <path fill="#fff" fill-opacity=".2" d="M80 .91c44.027 0 79.745 35.572 79.991 79.544 0-.154.009-.3.009-.454 0-44.182-35.818-80-80-80S0 35.818 0 80c0 .154.01.3.01.454C.254 36.482 35.972.91 80 .91z" /> <path fill="#3E2723" fill-opacity=".15" d="M80 159.091c44.027 0 79.745-35.573 79.991-79.546 0 .155.009.3.009.455 0 44.182-35.818 80-80 80S0 124.182 0 80c0-.155.01-.3.01-.455.245 43.973 35.963 79.546 79.99 79.546z" /> </g> <circle cx="80" cy="80" r="80" fill="url(#A)" /> <defs> <linearGradient id="b" x1="40.31" x2="71.235" y1="76.834" y2="36.175" gradientUnits="userSpaceOnUse"> <stop stop-color="#A52714" stop-opacity=".6" /> <stop offset=".66" stop-color="#A52714" stop-opacity=".01" /> </linearGradient> <linearGradient id="e" x1="105.461" x2="48.504" y1="107.782" y2="88.061" gradientUnits="userSpaceOnUse"> <stop stop-color="#055524" stop-opacity=".4" /> <stop offset=".33" stop-color="#055524" stop-opacity=".01" /> </linearGradient> <linearGradient id="i" x1="82.439" x2="106.155" y1="47.27" y2="101.191" gradientUnits="userSpaceOnUse"> <stop stop-color="#EA6100" stop-opacity=".3" /> <stop offset=".66" stop-color="#EA6100" stop-opacity=".01" /> </linearGradient> <linearGradient id="k" x1="82.439" x2="106.155" y1="47.27" y2="101.191" gradientUnits="userSpaceOnUse"> <stop stop-color="#EA6100" stop-opacity=".3" /> <stop offset=".66" stop-color="#EA6100" stop-opacity=".01" /> </linearGradient> <linearGradient id="n" x1="40.31" x2="71.235" y1="76.834" y2="36.175" gradientUnits="userSpaceOnUse"> <stop stop-color="#A52714" stop-opacity=".6" /> <stop offset=".66" stop-color="#A52714" stop-opacity=".01" /> </linearGradient> <linearGradient id="s" x1="105.461" x2="48.504" y1="107.782" y2="88.061" gradientUnits="userSpaceOnUse"> <stop stop-color="#055524" stop-opacity=".4" /> <stop offset=".33" stop-color="#055524" stop-opacity=".01" /> </linearGradient> <radialGradient id="p" cx="0" cy="0" r="1" gradientTransform="matrix(76.4346 0 0 20.4248 76.524 43.59)" gradientUnits="userSpaceOnUse"> <stop stop-color="#3E2723" stop-opacity=".2" /> <stop offset="1" stop-color="#3E2723" stop-opacity=".01" /> </radialGradient> <radialGradient id="u" cx="0" cy="0" r="1" gradientTransform="matrix(70.9491 0 0 83.7137 12.614 36.837)" gradientUnits="userSpaceOnUse"> <stop stop-color="#3E2723" stop-opacity=".2" /> <stop offset="1" stop-color="#3E2723" stop-opacity=".01" /> </radialGradient> <radialGradient id="w" cx="0" cy="0" r="1" gradientTransform="matrix(79.8818 0 0 160.916 79.858 80.126)" gradientUnits="userSpaceOnUse"> <stop stop-color="#263238" stop-opacity=".2" /> <stop offset="1" stop-color="#263238" stop-opacity=".01" /> </radialGradient> <radialGradient id="A" cx="0" cy="0" r="1" gradientTransform="translate(23.896 21.83) scale(160.678)" gradientUnits="userSpaceOnUse"> <stop stop-color="#fff" stop-opacity=".1" /> <stop offset="1" stop-color="#fff" stop-opacity=".01" /> </radialGradient> </defs> </svg> </div> <span style="display: none" lang="ko" class="download">Chrome 다운로드</span> <span style="display: none" lang="en" class="download">Download Chrome</span> <span style="display: none" lang="ja" class="download">Chromeダウンロード</span> <span style="display: none" lang="zh" class="download">Chrome下载</span> <span style="display: none" lang="vi" class="download">Tải về Chrome</span> <span style="display: none" lang="fr" class="download">Télécharger Chrome</span> <span style="display: none" lang="es" class="download">Descarga de Chrome</span> <span style="display: none" lang="de" class="download">Download von Chrome</span> </a> </li> <li class="item"> <a href="https://www.microsoft.com/edge/download" target="_blank" class="link edge"> <div class="logo_browser"> <svg width="129" height="129" viewBox="0 0 160 160" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M144.408 119.074a58.695 58.695 0 0 1-6.587 2.943 63.66 63.66 0 0 1-22.436 4.037c-29.573 0-55.333-20.341-55.333-46.444A19.671 19.671 0 0 1 70.32 62.543c-26.748 1.125-33.623 28.997-33.623 45.326 0 46.17 42.553 50.85 51.721 50.85 4.944 0 12.399-1.437 16.874-2.849l.819-.275a80.206 80.206 0 0 0 41.621-32.996 2.501 2.501 0 0 0-3.324-3.525z" fill="url(#37k8z1gyda)" /> <path opacity=".35" d="M144.408 119.074a58.695 58.695 0 0 1-6.587 2.943 63.66 63.66 0 0 1-22.436 4.037c-29.573 0-55.333-20.341-55.333-46.444A19.671 19.671 0 0 1 70.32 62.543c-26.748 1.125-33.623 28.997-33.623 45.326 0 46.17 42.553 50.85 51.721 50.85 4.944 0 12.399-1.437 16.874-2.849l.819-.275a80.206 80.206 0 0 0 41.621-32.996 2.501 2.501 0 0 0-3.324-3.525z" fill="url(#ucd9td7tlb)" /> <path d="M66.076 150.87a49.505 49.505 0 0 1-14.211-13.336 50.448 50.448 0 0 1-8.238-41.793A50.445 50.445 0 0 1 70.32 62.543c1.95-.919 5.28-2.581 9.711-2.5a20.22 20.22 0 0 1 16.055 8.124 19.925 19.925 0 0 1 3.975 11.661c0-.131 15.286-49.744-49.996-49.744C22.629 30.084.069 56.118.069 78.96a81.336 81.336 0 0 0 7.568 34.996 79.997 79.997 0 0 0 97.73 41.938 47.208 47.208 0 0 1-39.235-4.999l-.056-.025z" fill="url(#qkotbghjic)" /> <path opacity=".41" d="M66.076 150.87a49.505 49.505 0 0 1-14.211-13.336 50.448 50.448 0 0 1-8.238-41.793A50.445 50.445 0 0 1 70.32 62.543c1.95-.919 5.28-2.581 9.711-2.5a20.22 20.22 0 0 1 16.055 8.124 19.925 19.925 0 0 1 3.975 11.661c0-.131 15.286-49.744-49.996-49.744C22.629 30.084.069 56.118.069 78.96a81.336 81.336 0 0 0 7.568 34.996 79.997 79.997 0 0 0 97.73 41.938 47.208 47.208 0 0 1-39.235-4.999l-.056-.025z" fill="url(#a5zezvlg6d)" /> <path d="M95.199 93.027c-.506.656-2.063 1.562-2.063 3.537 0 1.63 1.063 3.2 2.95 4.518 8.987 6.249 25.929 5.424 25.973 5.424a37.223 37.223 0 0 0 18.917-5.218 38.357 38.357 0 0 0 19.018-33.046c.162-14.005-5-23.316-7.087-27.44C139.664 14.897 111.079 0 79.994 0A79.995 79.995 0 0 0 0 78.866C.3 56.03 22.998 37.589 49.996 37.589c2.187 0 14.661.213 26.248 6.293 10.212 5.362 15.561 11.837 19.28 18.255 3.862 6.668 4.549 15.092 4.549 18.447 0 3.356-1.712 8.33-4.874 12.443z" fill="url(#4z7cbdp3me)" /> <path d="M95.199 93.027c-.506.656-2.063 1.562-2.063 3.537 0 1.63 1.063 3.2 2.95 4.518 8.987 6.249 25.929 5.424 25.973 5.424a37.223 37.223 0 0 0 18.917-5.218 38.357 38.357 0 0 0 19.018-33.046c.162-14.005-5-23.316-7.087-27.44C139.664 14.897 111.079 0 79.994 0A79.995 79.995 0 0 0 0 78.866C.3 56.03 22.998 37.589 49.996 37.589c2.187 0 14.661.213 26.248 6.293 10.212 5.362 15.561 11.837 19.28 18.255 3.862 6.668 4.549 15.092 4.549 18.447 0 3.356-1.712 8.33-4.874 12.443z" fill="url(#izh2mz64rf)" /> <defs> <radialGradient id="ucd9td7tlb" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(59.6078 0 0 56.6253 98.255 111.522)"> <stop offset=".72" stop-opacity="0" /> <stop offset=".95" stop-opacity=".53" /> <stop offset="1" /> </radialGradient> <radialGradient id="a5zezvlg6d" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(13.42775 -88.61948 71.59826 10.84867 44.118 124.366)"> <stop offset=".76" stop-opacity="0" /> <stop offset=".95" stop-opacity=".5" /> <stop offset="1" /> </radialGradient> <radialGradient id="4z7cbdp3me" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-5.06035 126.50383 -269.43752 -10.77792 16.163 29.607)"> <stop stop-color="#35C1F1" /> <stop offset=".11" stop-color="#34C1ED" /> <stop offset=".23" stop-color="#2FC2DF" /> <stop offset=".31" stop-color="#2BC3D2" /> <stop offset=".67" stop-color="#36C752" /> </radialGradient> <radialGradient id="izh2mz64rf" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(17.0332 58.3973 -47.4901 13.85181 150.033 48.373)"> <stop stop-color="#66EB6E" /> <stop offset="1" stop-color="#66EB6E" stop-opacity="0" /> </radialGradient> <linearGradient id="37k8z1gyda" x1="36.697" y1="110.644" x2="148.151" y2="110.644" gradientUnits="userSpaceOnUse"> <stop stop-color="#0C59A4" /> <stop offset="1" stop-color="#114A8B" /> </linearGradient> <linearGradient id="qkotbghjic" x1="95.455" y1="62.299" x2="25.845" y2="138.124" gradientUnits="userSpaceOnUse"> <stop stop-color="#1B9DE2" /> <stop offset=".16" stop-color="#1595DF" /> <stop offset=".67" stop-color="#0680D7" /> <stop offset="1" stop-color="#0078D4" /> </linearGradient> </defs> </svg> </div> <span style="display: none" lang="ko" class="download">Edge 다운로드</span> <span style="display: none" lang="en" class="download">Download Edge</span> <span style="display: none" lang="ja" class="download">Edgeダウンロード</span> <span style="display: none" lang="zh" class="download">Edge下载</span> <span style="display: none" lang="vi" class="download">Tải về Edge</span> <span style="display: none" lang="fr" class="download">Télécharger Edge</span> <span style="display: none" lang="es" class="download">Descarga de Edge</span> <span style="display: none" lang="de" class="download">Edge herunterladen</span> </a> </li> </ul> <p style="display: none" lang="ko" class="detail"> 업데이트를 지원하지 않는 브라우저 <span class="sub">(Internet Explorer 10 이하, Safari 7.0 이하, Android 4.3 이하)</span> </p> <p style="display: none" lang="en" class="detail"> Browsers that do not support updates <span class="sub">(Internet Explorer 10 or below, Safari 7.0 or below, Android 4.3 or below)</span> </p> <p style="display: none" lang="ja" class="detail"> アップデートをサポートしないブラウザ <span class="sub">(Internet Explorer 10以下, Safari 7.0以下, Android 4.3以下)</span> </p> <p style="display: none" lang="zh" class="detail"> 不支持更新的浏览器 <span class="sub">(Internet Explorer 10以下, Safari 7.0以下, Android 4.3以下)</span> </p> <p style="display: none" lang="vi" class="detail"> Trình duyệt không hỗ trợ cập nhật <span class="sub">(Internet Explorer 10 trở xuống, Safari 7.0 trở xuống, Android 4.3 trở xuống)</span> </p> <p style="display: none" lang="fr" class="detail"> Navigateur qui ne supporte pas les mises à jour <span class="sub">(Internet Explorer 10 ou moins, Safari 7.0 ou moins, Android 4.3 ou moins)</span> </p> <p style="display: none" lang="es" class="detail"> Navegadores que no apoyan actualizaciones <span class="sub">(Internet Explorer 10 menos, Safari 7.0 menos, Android 4.3 menos)</span> </p> <p style="display: none" lang="de" class="detail"> Browser, die keine Updates unterstützen <span class="sub">(Internet Explorer 10 oder früher, Safari 7.0 oder früher, Android 4.3 oder früher)</span> </p> </div> </body> </html>