求大神指点,这错哪了
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>style样式</title>
</head>
<body>
<h2 id="con">I love JavaScript</H2>
<p> JavaScript使网页显示动态效果并实现与用户交互功能。</p>
<script type="text/javascript">
var name=document.getElementByld("con");
name.style.color="red";
name.style.backgroundColor="#CCC";
name.style.display="none";
</script>
</body>
</html>