Browse Source

Add multi-file example

1991
urlysses 7 years ago
parent
commit
1571064535
4 changed files with 24 additions and 0 deletions
  1. +8
    -0
      examples/public/css/styles.css
  2. BIN
      examples/public/images/1991.png
  3. +12
    -0
      examples/public/index.html
  4. +4
    -0
      examples/public/js/scripts.js

+ 8
- 0
examples/public/css/styles.css View File

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

BIN
examples/public/images/1991.png View File

Before After
Width: 404  |  Height: 56  |  Size: 965B

+ 12
- 0
examples/public/index.html 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>

+ 4
- 0
examples/public/js/scripts.js View File

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

Loading…
Cancel
Save