瀏覽代碼

folders future structure

serg155alternate 2 年之前
父節點
當前提交
31f5af7db4

+ 20 - 0
HW10 Closures and scopes/index.html

@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW10 Closures and scopes
+    </title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

+ 1 - 0
HW10 Closures and scopes/script.js

@@ -0,0 +1 @@
+//Closures and scopes

HW10/style.css → HW10 Closures and scopes/style.css


+ 19 - 0
HW11 Redux/index.html

@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW11 Redux </title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

HW10/script.js → HW11 Redux/script.js


HW9/style.css → HW11 Redux/style.css


+ 19 - 0
HW12 Async , callback hell/index.html

@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW12 Async</title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

HW9/script.js → HW12 Async , callback hell/script.js


+ 10 - 0
HW12 Async , callback hell/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 20 - 0
HW13 promise hell/index.html

@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW12 Promise
+    </title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

+ 1 - 0
HW13 promise hell/script.js

@@ -0,0 +1 @@
+//Closures and scopes

+ 10 - 0
HW13 promise hell/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 20 - 0
HW14 await paradise/index.html

@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW14 Await
+    </title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

+ 1 - 0
HW14 await paradise/script.js

@@ -0,0 +1 @@
+//Closures and scopes

+ 10 - 0
HW14 await paradise/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 20 - 0
HW15 generator/index.html

@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW15 Generator
+    </title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

+ 1 - 0
HW15 generator/script.js

@@ -0,0 +1 @@
+//Closures and scopes

+ 10 - 0
HW15 generator/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 1 - 1
HW9/index.html

@@ -5,7 +5,7 @@
     <meta charset="UTF-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>HW9</title>
+    <title>HW16 Rest</title>
     <link rel="stylesheet" href="style.css">
 </head>
 

+ 0 - 0
HW16 REST and GraphQL/script.js


+ 10 - 0
HW16 REST and GraphQL/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 20 - 0
HW17 try-catch, redux-thunk/index.html

@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW17 Try catch
+    </title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

+ 1 - 0
HW17 try-catch, redux-thunk/script.js

@@ -0,0 +1 @@
+//Closures and scopes

+ 10 - 0
HW17 try-catch, redux-thunk/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 19 - 0
HW18 Canvas, Prototype OOP/index.html

@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>HW18 Canvas and OOP</title>
+    <link rel="stylesheet" href="style.css">
+</head>
+
+<body>
+    <div class="container">
+       
+    </div>
+    <script src="script.js"></script>
+</body>
+
+</html>

+ 0 - 0
HW18 Canvas, Prototype OOP/script.js


+ 10 - 0
HW18 Canvas, Prototype OOP/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}

+ 1 - 1
HW10/index.html

@@ -5,7 +5,7 @@
     <meta charset="UTF-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>HW10</title>
+    <title>HW9 dom2</title>
     <link rel="stylesheet" href="style.css">
 </head>
 

+ 0 - 0
HW9 DOM2/script.js


+ 10 - 0
HW9 DOM2/style.css

@@ -0,0 +1,10 @@
+*, html {
+    margin: 0;
+    padding: 0;
+}
+.container {
+    position: relative;
+    max-width: 1140px;
+    margin: 0 auto;
+    padding: 50px;
+}