1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
   | <!DOCTYPE html> <html> 	<head> 		<meta charset="utf-8"> 		<title></title> 		<style type="text/css"> 			:root { 				 				--ruben-width: 200px; 				--ruben-height: 200px;  				--ruben-bg-color: #ff0000; 			}
  			.ruben { 				 				background-color: var(--ruben-bg-color); 				width: var(--ruben-width); 				height: var(--ruben-height); 			}
  			.ruben1 { 				background-color: var(--ruben-bg-color); 				width: var(--ruben-width); 				height: var(--ruben-height); 			} 		</style> 	</head> 	<body> 		<div class="ruben"></div> 		<hr/> 		<div class="ruben1"></div> 	</body> </html>
 
  |