I am not able to link my style.css file to php file
I am giving the exact same path so there is no problem in path
<link rel="stylesheet" href="/wp-content/themes/themeOne/style.css">**
this is the line
after viewing page source i get this error
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head>
<title>404 Not Found</title> </head><body> <h1>Not Found</h1>
<p>The requested URL was not found on this server.</p> </body></html>
can anyone help me in this?
>Solution :
write this <link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/style.css" />