photohub/example/img1/img1.html
2025-03-07 18:12:52 +01:00

38 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="img1.css">
</head>
<body>
<img id="small" src="./img1.jpeg">
<div id="download">
<a id="large" href="./img1.png">
<img src="../icons/file.png">
<p>large</p>
</a>
<a id="raw" href="./img1.NEF">
<img src="../icons/file.png">
<p>raw</p>
</a>
</div>
<div id="exif">
<!-- Checkbox cachée qui contrôle l'affichage du texte -->
<input type="checkbox" id="dropdown" class="dropdown-checkbox">
<!-- Bouton -->
<label for="dropdown" class="dropdown-btn">Display exif data</label>
<div class="dropdown-text">
<pre>
<code>
ExifTool Version Number : 12.57
File Name : img1.NEF
Directory : ./example/img1
File Size : 5.7 MB
</code>
</pre>
</div>
</div>
</body>
</html>