Javascript

기본 이벤트 제어

오시리엔 2023. 10. 10. 10:00
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>기본 이벤트 제어</title>

    <!-- css 파일을 불러오는 코드 -->

    <!-- 아이콘 사용을 위한 Font Awesome 6 CDN -->
    <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">

    <!-- 구글 웹 폰트 사용을 위한 CDN -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

    <!-- 내가 만든 CSS 파일-->
    <link rel="stylesheet" type="text/css" href="./css/reset.css">
    <link rel="stylesheet" type="text/css" href="./css/commons.css">
    <link rel="stylesheet" type="text/css" href="./css/test.css">
    <style>

    </style>

    <!-- javascript 작성 공간 -->
    <script src="./custom-link.js"></script>
    <script>
       
    </script>
</head>
<body>
    <div class="container w-500">
        <div class="row">
            <h1>기본 이벤트 제어</h1>
        </div>
        <div class="row">
            <a href="https://www.google.com" class="link-disabled">구글로 이동</a>
            <a href="https://www.google.com" class="link-confirm">구글로 이동</a>
            <a href="https://www.google.com" class="link-confirm" data-message="정말 갈꺼야?">구글로 이동</a>
        </div>
    </div>
</body>
</html>

'Javascript' 카테고리의 다른 글

색상 변경 예제(jQuery)  (0) 2023.10.12
jQuery 제이쿼리  (0) 2023.10.11
글자수 입력제한  (0) 2023.10.05
전화기 화면  (1) 2023.10.04
글자크기 조절 문제  (2) 2023.09.30