i android developer , have no imagination how php works. due project need done.
i have index.html file in root of project , .css files under css folder , .js files under js folder. can see html file without problem when load index.html file.
my apache server running, php installed , change index.html index.php. seems css , js files doesn't loaded -or used- see contents without proper formatting.
any idea appreciated. thanks.
<!doctype html> <html lang="en"> <head> <title>template - home</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- bootstrap --> <link href="css/bootstrap.css" rel="stylesheet" media="screen"> <link href="css/gsallpage.css" rel="stylesheet" media="screen"> </head> <body> <div class="container-fluid gsumbrella"> <div class="row-fluid"> <span class="span12"> <ul class="inline pull-right"> <li><a href="#">sign up</a></li> <li class="divider-vertical"></li> <li><a href="#">sign in</a></li> </ul> <ul class="inline"> <li><a href="#"><img src="img/graphisoft_logo_white.png"></a></li> <li><a href="#">mycad</a></li> <li class="active"><a href="#">components</a></li> <li><a href="#">gsx</a></li> <li><a href="#">talk</a></li> <li><a href="#">wiki</a></li> <li><a href="#">facebook/ac</a></li> <li><a href="#">youtube/ac</a></li> </ul> </span> </div> </div> <div class="container"> <header> <div class="row"> <div class="span12"> <a href="home.html"><img src="img/_logo_grey.png"></a> <form class="form-inline pull-right"> <div class="input-append"> <input class="span5" id="inputicon" type="text" placeholder="what looking for?"><button class="btn" type="button"><i class="icon-search"></i></button> </div> </form> </div> </div> .....
Comments
Post a Comment