28 lines
826 B
HTML
28 lines
826 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<title>Daniel Cortés</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width-device-width, initial-scale=1">
|
|
<meta name="author" content="Daniel Cortés">
|
|
<link rel="stylesheet" href="/assets/style.css" type="text/css">
|
|
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Now</h1>
|
|
<p>(En Construccion!)</p>
|
|
</div>
|
|
<script>
|
|
function makeImagesClickeable() {
|
|
document.querySelectorAll("img").forEach(img => {
|
|
img.addEventListener("click", e => window.open(e.target.src))
|
|
});
|
|
}
|
|
|
|
window.addEventListener('load', (event) => {
|
|
makeImagesClickeable();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |