HTML로 다운로드 링크를 생성하려면 코드는 다음과 같습니다. -
예시
<!DOCTYPE html> <html> <body> <h1>Download Link example</h1> <a href="https://i.picsum.photos/id/225/800/800.jpg" download> <img src="https://i.picsum.photos/id/225/800/800.jpg" style="width: 300px;height: 300px;" > </a> <h2>Click on the image above to download it</h2> </head> <body>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -