diff --git "a/\345\274\240\346\200\235\345\251\267/11-19/1.html" "b/\345\274\240\346\200\235\345\251\267/11-19/1.html"
index deb45be6a3dd274270e9c7254f9773caef95ef33..3153ed6240f1c91ee000206e6f43a688c9071e1c 100644
--- "a/\345\274\240\346\200\235\345\251\267/11-19/1.html"
+++ "b/\345\274\240\346\200\235\345\251\267/11-19/1.html"
@@ -1,11 +1,91 @@
-
-
-
-
- DoDoDo
-
-
-
-
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\274\240\346\200\235\345\251\267/11-24/1.html" "b/\345\274\240\346\200\235\345\251\267/11-24/1.html"
new file mode 100644
index 0000000000000000000000000000000000000000..4b757a5b14270256b59aaa4ff63ad303087bd08a
--- /dev/null
+++ "b/\345\274\240\346\200\235\345\251\267/11-24/1.html"
@@ -0,0 +1,141 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\274\240\346\200\235\345\251\267/11-25/1.html" "b/\345\274\240\346\200\235\345\251\267/11-25/1.html"
new file mode 100644
index 0000000000000000000000000000000000000000..4028463f2ab31037a4301f7a2bc7ce50687fa595
--- /dev/null
+++ "b/\345\274\240\346\200\235\345\251\267/11-25/1.html"
@@ -0,0 +1,218 @@
+
+
+
+
+
+
+ Grid掷骰子
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\274\240\346\200\235\345\251\267/11-25/2.html" "b/\345\274\240\346\200\235\345\251\267/11-25/2.html"
new file mode 100644
index 0000000000000000000000000000000000000000..48e9545c380cad7c462d987deea452da01b06363
--- /dev/null
+++ "b/\345\274\240\346\200\235\345\251\267/11-25/2.html"
@@ -0,0 +1,66 @@
+
+
+
+
+
+ 基本网格布局
+
+
+
+
+
+
+
+
25%
+
25%
+
25%
+
25%
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\274\240\346\200\235\345\251\267/11-25/css/style.css" "b/\345\274\240\346\200\235\345\251\267/11-25/css/style.css"
new file mode 100644
index 0000000000000000000000000000000000000000..2672d94abfd6adb87604809b4c95fd1bb7f7185c
--- /dev/null
+++ "b/\345\274\240\346\200\235\345\251\267/11-25/css/style.css"
@@ -0,0 +1,10 @@
+.container {
+ display: grid;
+}
+.item {
+ background-color: orange;
+ font-size: 2em;
+ text-align: center;
+ color: #fff;
+ border: 1px solid #333;
+}
\ No newline at end of file
diff --git "a/\345\274\240\346\200\235\345\251\267/11-26/1.html" "b/\345\274\240\346\200\235\345\251\267/11-26/1.html"
new file mode 100644
index 0000000000000000000000000000000000000000..95e0f753d426e918fd99f50f0903a6feb00e33f6
--- /dev/null
+++ "b/\345\274\240\346\200\235\345\251\267/11-26/1.html"
@@ -0,0 +1,189 @@
+
+
+
+
+
+ 实时时钟
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\345\274\240\346\200\235\345\251\267/11-26/js/jquery-3.6.0.js" "b/\345\274\240\346\200\235\345\251\267/11-26/js/jquery-3.6.0.js"
new file mode 100644
index 0000000000000000000000000000000000000000..fc6c299b73e792ef288e785c22393a5df9dded4b
--- /dev/null
+++ "b/\345\274\240\346\200\235\345\251\267/11-26/js/jquery-3.6.0.js"
@@ -0,0 +1,10881 @@
+/*!
+ * jQuery JavaScript Library v3.6.0
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright OpenJS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2021-03-02T17:08Z
+ */
+( function( global, factory ) {
+
+ "use strict";
+
+ if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+ // For CommonJS and CommonJS-like environments where a proper `window`
+ // is present, execute the factory and get jQuery.
+ // For environments that do not have a `window` with a `document`
+ // (such as Node.js), expose a factory as module.exports.
+ // This accentuates the need for the creation of a real `window`.
+ // e.g. var jQuery = require("jquery")(window);
+ // See ticket #14549 for more info.
+ module.exports = global.document ?
+ factory( global, true ) :
+ function( w ) {
+ if ( !w.document ) {
+ throw new Error( "jQuery requires a window with a document" );
+ }
+ return factory( w );
+ };
+ } else {
+ factory( global );
+ }
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+ return arr.flat.call( array );
+} : function( array ) {
+ return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+ // Support: Chrome <=57, Firefox <=52
+ // In some browsers, typeof returns "function" for HTML