33 lines
1 KiB
HTML
33 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Krll URL Shortener</title>
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="static/root.css">
|
|
<link rel="stylesheet" href="static/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="input-container">
|
|
<input id="url" placeholder="Loooooooooooong URL" />
|
|
<button id="to-shorten-btn">Shorten</button>
|
|
</div>
|
|
|
|
<div class="result-container" id="result-container">
|
|
<p id="error">Your URL is invalid!</p>
|
|
<p id="short-url"></p>
|
|
<p id="copied">Copied!</p>
|
|
<img id="qr-code" />
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>스팸이나 불법적인 용도로 사용하지 말아주세요.</p>
|
|
<p>남용 신고 이메일 <a href="mailto:maengkkong1524@naver.com">maengkkong1524@naver.com</a></p>
|
|
</footer>
|
|
|
|
<script src="static/script.js"></script>
|
|
</body>
|
|
</html> |