Can't able to apply css file in html5

Here is your issue.

<link rel = "stylesheet" type = "text/css" href = "https://stackoverflow.com/questions/26623523/css/style.css" />

There should be no spaces between attr and its value:

<link rel="stylesheet" type="text/css" href="https://stackoverflow.com/questions/26623523/css/style.css" />

Leave a Comment