27 lines
761 B
HTML
27 lines
761 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>새 탭</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Quick Links</h1>
|
|
|
|
<div class="add-link-section">
|
|
<input type="text" id="linkTitle" placeholder="링크 제목">
|
|
<input type="url" id="linkUrl" placeholder="URL (https://example.com)">
|
|
<button id="addBtn">추가</button>
|
|
</div>
|
|
|
|
<div class="links-container" id="linksContainer">
|
|
<!-- 링크들이 여기에 동적으로 추가됩니다 -->
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|