Why no work

Result
`it is div 12/15`

here is the code thanks to glitch

<html>
	<head>
		<title>Result</title>
	</head>
	<body>
		<div style="width:50px; height:50px; background-color:red"></div>
		<div style="width:50px; height:50px; background-color:blue"></div>
		<div style="width:50px; height:50px; background-color:green"></div>
	<a herf="www.youtube.com"><div style="width:50px; height:50px; background-color:yellow"></div></a>
	</body>
</html>

you misspelled your href attribute

1 Like

You are writing code now, which means if you want to link to a web-addres you need to specify http:

<a href="http://whateverthesite.com">click me</a>