css - stylesheet link not working -
im following tutorial how create responsive website, , did youtube, yet doesn't work. use espresso, , have files inside same folder local root is, link stylesheet in header tag in html file, i've tried src="" complete paths doesn't work either. here how code looks atm.
html: <header> <link rel"stylesheet" type="text/css" href="style.css" media="screen"/> </header>
put in head tag , make sure css page in same directory or
<link type="text/css" rel="stylesheet" href="style.css">
<link type="text/css" rel="stylesheet" href="your folder/style.css" >
Comments
Post a Comment