Buenas tardes! les adjunto mi ejercicio CU01054D del taller de programación web con CSS usando Notepad++ como editor:
(no tengan en cuenta las imágenes que están desprolijas)
HTML:
<!DOCTYPE html>
<!--Curso CSS estilos aprenderaprogramar.com-->
<html>
<head>
	<title> Portal web - aprenderaprogramar.com </title>
	<meta charset="utf-8">
	<meta name="description" content="Portal web aprenderaprogramar.com">
	<meta name="keywords" content="aprender, programar, cursos, libros">
	<link rel="stylesheet" type="text/css" href="Cursores54.css">
</head>
<body>
 
    <div id="Primero"> Div uno
           <ul>
               <li> <a style="cursor:help;"href="https://www.aprenderaprogramar.com" > Link 1 </a> </li>
               <li> <a style="cursor:help;"href="https://www.aprenderaprogramar.com" > Link 2 </a> </li>
               <li> <a style="cursor:help;"href="https://www.aprenderaprogramar.com" > Link 3 </a> </li>
           </ul> 
     </div>
    
	<div> 
		<a style="cursor:zoom-in;" href="http://elsitiodeale.byethost7.com/CSS(54)CursoresDOC2.html"> 
			<img src="http://elsitiodeale.byethost7.com/Lamborghinimurcielago.jpg" width="200px" height="300px"> </a>
   </div>
</body>
</html>
HTML (DOC 2 con imagen):
<!DOCTYPE html>
<!--Curso CSS estilos aprenderaprogramar.com-->
<html>
<head>
	<title>Tipos (CU01054D)</title>
	<meta charset="utf-8">
	<meta name="description" content="Portal web aprenderaprogramar.com">
	<meta name="keywords" content="aprender, programar, cursos, libros">
	<link rel="stylesheet" type="text/css" href=".css">
</head>
<body>
	Este es el documento n.2 del cursor CSS - Tipos (CU01054D) </br>
	<img src="http://elsitiodeale.byethost7.com/Papel%20rustico-pixabay.jpg" width="300px" height="300px">
  
</body>
</html>
CSS:
div {margin:25px; padding:0px; width: 200px; height:300px; border:solid 5px violet;}