mirror of
https://github.com/urlysses/1991.git
synced 2024-11-16 01:28:06 -05:00
Add multi-file example
This commit is contained in:
parent
a32c43b989
commit
1571064535
8
examples/public/css/styles.css
Normal file
8
examples/public/css/styles.css
Normal file
@ -0,0 +1,8 @@
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
body {
|
||||
background: #2637dd;
|
||||
}
|
BIN
examples/public/images/1991.png
Normal file
BIN
examples/public/images/1991.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 965 B |
12
examples/public/index.html
Normal file
12
examples/public/index.html
Normal 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
examples/public/js/scripts.js
Normal file
4
examples/public/js/scripts.js
Normal file
@ -0,0 +1,4 @@
|
||||
/*jslint browser: true*/
|
||||
(function () {
|
||||
console.log("fff");
|
||||
}());
|
Loading…
Reference in New Issue
Block a user