Add multi-file example

This commit is contained in:
urlysses 2017-02-17 09:10:35 -05:00
parent a32c43b989
commit 1571064535
4 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,8 @@
html,
body {
margin: 0;
padding: 0;
}
body {
background: #2637dd;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 965 B

View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>fff</title>
</head>
<body>
<img src="images/1991.png" alt="1991">
<script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>

View File

@ -0,0 +1,4 @@
/*jslint browser: true*/
(function () {
console.log("fff");
}());