How to remove link from only one element?
I have two div in one a. I want link to only first div. this is code: HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="./style.css"> <title>Document</title> </head> <body> <a href="#"> <div id="div1"></div> <div id="div1info"></div> </a> </body> </html> CSS #div1 { width: 15em; height: 25em; background-color:… Read More How to remove link from only one element?