Primitive drawing progrmme
CSS
body {
height: 200px;
background:greenyellow;
}
.dot {
height: 8px; width: 8px;
border-radius: 4px; /* rounds corners */
background: blue;
position: absolute;
}
JavaScript
window.addEventListener("click",event=>{
let dot = document.createElement("div");
dot.className = "dot";
dot.style.left = (event.pageX -4 ) + "px";
dot.style.top = (event.pageY - 4) + "px";
document.body.appendChild(dot);
})