Jump to content

Identical css and js files


JasonPotter

Recommended Posts

  • 6 months later...

You would need to rename your existing files to something different. (Or, you could rename the new files).

In the end you would have something like this:

<!DOCTYPE html>
<html>
  <head>
    <title>Your site</title>
    <!-- the existing stylesheet -->
    <link rel="stylesheet" href="stylesheet1.css">
    <!-- the new stylesheet -->
    <link rel="stylesheet" href="stylesheet2.css">
    <!-- your existing javascript -->
    <script src="oldjavascript.js"></script>
    <!-- your new javascript -->
    <script src="newjavascript.js"></script>
  </head>
  <body>
    
  </body>
</html>

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...