cursor CSS. Tipos. Efectos hover: move, no-drop, resize, not-allowed, crosshair, progress, wait. (CU01054D) Aquí esta la actividad CU01054D del curso Bases de la programación web con CSS:
Código HTML (página 1)<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tipos de cursor</title>
<link reL="stylesheet" type="text/css" href="cursor.css">
</head>
<body>
<div id="div1">
<a href="">¿El tomate es una fruta o un vegetal?</a><br><br>
<a href="">¿Avatar es animación o anime?</a><br><br>
<a href="">¿Los caballos tienen uñas?</a><br><br>
<a href="">¿Són necesarias estas preguntas?</a>
</div>
<div id="div2">
<a href="Ejercicio_Cursor-pag2.html" title="AUMENTAR IMAGEN" target="_blank"><img src="https://upload.wikimedia.org/wikipedia/en/8/86/Avatar_Aang.png" width="200px" height="300px" alt="Avatar.png"></a>
</div>
</body>
</html>
Código CSS/*DATOS GENERALES*/
*{font-family: "Lucida Fax", "Lucida sans", sans-serif;}
/*Links*/
a:link, a:visited{color: #6BB0FF; text-decoration: none; font-weight: 700;}
a:hover{color: #3A78FF;}
/*Div*/
div{float: left; margin: 25px; padding: 0;
width: 200px; height: 300px; border: 5px solid violet;}
#div1 a{cursor: help;}
#div2 a{cursor: zoom-in;}
Código HTML (Página 2)<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Avatar - Imagen aumentada</title>
</head>
<body>
<img src="https://upload.wikimedia.org/wikipedia/en/8/86/Avatar_Aang.png" alt="avatar.png" width="600px">
</body>
</html>