How to apply CSS and JavaScript from dropbox folder (For using it in blogger)

css, html, javascript

Solution

Replace `www.` with `dl.` is what worked for me.

Something like this: `https://dl.dropbox.com/s/...`

Problem

I want to add dropbox url in the below link tags and script tags,so that I can use this template in my blog. I tried it, but the themes are not being applied. Please help. My common dropbox folder: https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM contains css and js files. ``` <head> <title>Tessellate by HTML5 UP</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <link href="http://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,400,400italic" rel="stylesheet" type="text/css" /> <!--[if lte IE 8]><script src="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/html5shiv.js"></script><![endif]--> <script src="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/jquery.min.js"></script> <script src="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/skel.min.js"></script> <script src="js/init.js"></script> <noscript> <link rel="stylesheet" href="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/skel-noscript.css" /> <link rel="stylesheet" href="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/style.css" /> <link rel="stylesheet" href="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/style-wide.css" /> </noscript> <!--[if lte IE 8]><link rel="stylesheet" href="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/v8.css" /><![endif]--> <!--[if lte IE 9]><link rel="stylesheet" href="https://www.dropbox.com/sh/b7bqyva7pz39nx1/QIGR6hJpkM/v9.css" /><![endif]-- ```

Original source