Meu CSS não irá vincular ao meu arquivo HTML

Eu estou tentando construir um site simples no Sublime Text Editor 2, no entanto, meu arquivo CSS não irá vincular ao meu arquivo HTML e, portanto, a impressão de texto simples. Meu código HTML é:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/       xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Christopher Olson</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,600,700" rel="stylesheet" />

<link rel="stylesheet" href="css/style.css" />

Tanto quanto eu sei, a última linha deve ligar o arquivo CSS.

Isso faz parte do CSS que tenho:

body, input, textarea
{
    font-family: 'Open Sans', sans-serif;
    line-height: 1.85em;
    color: #888;
    font-weight: 300;
}

Alguma idéia para corrigir? Por favor ajude

EDIT: Eu tenho as tags, eu só fiquei sem espaço para postá-lo

questionAnswers(4)

yourAnswerToTheQuestion