由于config.js文件,在上传到Web服务器后,布局和功能被破坏

I developed a small site .After I upload my design with doing some coding and functionality it ,on my hosting company web server layout is broken in all the browsers. I mean Some css is loaded properly but some elements and css are not at their places. I checked several times the css files on my local pc and the webserver and they have same content. I find this error might be happen dueto my config.js file , i have loaded my css through my config.js file. here is my website link :uploaded link

It should be displayed and function like this :proper layout link

i found this error on my console

SyntaxError: syntax error   
<!DOCTYPE HTML>

when i remove this i found error in my head tag when i remove it shows error on body tag and same things is going on. any body have idea why this thing happen & how to resolve this ?

enter image description here

change in

<link rel="stylesheet" href="css/skel-noscript.css" />
            <link rel="stylesheet" href="css/style.css" />
            <link rel="stylesheet" href="css/style-desktop.css" />

I guess head section of your home page/index file is different than inner page head section. Simplest way will be copy inner page header and paste is in index file. Then do necessary changes in it.

Please insure that all files are in one folder otherwise you have to be more careful with path.

Right now! no script nor stylesheets are getting loaded on your homepage.

finally got the solution . i removed my config.js file and load all the css directly in my index page.

previously i am loading all css from config.js file with using this code :

    <noscript>
        <link rel="stylesheet" href="css/skel-noscript.css" />
        <link rel="stylesheet" href="css/style.css" />
        <link rel="stylesheet" href="css/style-desktop.css" />
    </noscript>

Now i have removed my config.js and includes all the css directly in my index page rather using <noscript> tag

    <link rel="stylesheet" href="css/skel-noscript.css" />
    <link rel="stylesheet" href="css/style.css" />
    <link rel="stylesheet" href="css/style-desktop.css" />

i really appreciating all of you.