Reputation: 548
Rather silly question I suppose. I am trying to add web template to my PHP file in Ubuntu, I have defined the link and have stored the form.css
file in same location where my other PHP files are e.g var/www/html/web
but for some reason I cant show the template in my webpage. see pic attached and thanks for help.
<!DOCTYPE HTML>
<link href="//db.onlinewebfonts.com/c/a4e256ed67403c6ad5d43937ed48a77b?family=Core+Sans+N+W01+35+Light" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="form.css" type="text/css">
<div class="body-content">
<div class="module">
Upvotes: 1
Views: 3074
Reputation: 2508
There are a few things I would check for this:
chmod 644 form.css
localhost/path/to/form.css
into your web browser and see if it can access it. Upvotes: 1