Code #name to select only the p element with the ID "name".

<html>
<head>
<style>
#name{
background-color: green;}
</style>
</head>
<body>
<h1>Welcome to my site</h1>
  <p id="name">My name is Jimmy</p>
  <p id="hobby"></p> I love playing water polo
</body>
</html>]]>

Make sure to type #name.