X
X

Draw a Half Moon with HTML and CSS

Link

Mezzaluna per la bandiera della Tunisia

<!DOCTYPE html> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<meta name="viewport"
		content="width=device-width, 
				initial-scale=1.0"> 
<title>Half Moon</title> 
</head> 
<style> 
*{ 
	margin: 0; 
	padding: 0; 
	background-color: black; 
	
} 
/*Drawing the half moon by 
	manipulating the div box*/ 
div{ 
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, 0); 
	height: 100px; 
	width: 100px; 
	box-shadow: -15px 0px 0px 10px white ; 
	border-radius: 50%; 
} 
</style> 
<body> 

<div></div> 
</body> 
</html>