0 / 60 seg.

Identify the mistake in the following HTML code used to link an external CSS file named "style.css":

<!DOCTYPE html>
<html>
<head>
    <link type="text/css" rel="stylesheet" src="style.css">
</head>
<body>
    <p>This paragraph should be styled with external CSS.</p>
</body>
</html>