diff --git a/README.md b/README.md index 3dc9a323..ef53efb3 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ 欄位 | 內容 -----|-------- 學期 | 111 學年度下學期 -學生 | xxx -學號末兩碼 | xx +學生 | 894 +學號末兩碼 | 04 教師 | [陳鍾誠](https://www.nqu.edu.tw/educsie/index.php?act=blog&code=list&ids=4) 學校科系 | [金門大學資訊工程系](https://www.nqu.edu.tw/educsie/index.php) 課程內容 | https://github.com/ccc111b/html2denojs diff --git a/html/CSS.CSS b/html/CSS.CSS new file mode 100644 index 00000000..47d2269c --- /dev/null +++ b/html/CSS.CSS @@ -0,0 +1,38 @@ + +h1 { + text-align: center; + color:#1c65ad; +} + +body { + margin: 20px 10%; + +} +body { + background-color: #13a782; + +} +pre { + background-color: #e71616; + border:1px dotted #1916b9; + padding: 20px; + border-radius: 20px; +} + + + +h2 { + text-align: center; + color:#1c65ad; +} + +body { + margin: 20px 10%; +} + +pre { + background-color: #c9f30b; + border:1px dotted #2b944e; + padding: 20px; + border-radius: 20px; +} diff --git a/html/CSS.html b/html/CSS.html new file mode 100644 index 00000000..87310349 --- /dev/null +++ b/html/CSS.html @@ -0,0 +1,61 @@ + + + + + + + + + + +
+
+        

3/10經典賽賽程

+
+ + + +

3/11經典賽賽程

+
  • 11:00中國VS澳洲
  • + + + 註冊表單 + + +
    +

    註冊表單

    + + + + + + + + + + + + + + + + +
    + + + + + diff --git a/html/Prime b/html/Prime new file mode 100644 index 00000000..76d81a82 --- /dev/null +++ b/html/Prime @@ -0,0 +1,11 @@ +function isPrime(n) +{ + if (n<=1) + return false + for (let i=2;i<=n;i++) + { + if(n%i == 0) + return false + } + return true +} diff --git a/html/fibonacci b/html/fibonacci new file mode 100644 index 00000000..19b0d272 --- /dev/null +++ b/html/fibonacci @@ -0,0 +1,7 @@ +function fibonacci(n) +{ + if (n==1 || n==2) + return 1; + else return fibonacci(n-1)+fibonacci(n-2) +} +console.log (fibonacci((100))); diff --git a/html/hello.html b/html/hello.html new file mode 100644 index 00000000..49183987 --- /dev/null +++ b/html/hello.html @@ -0,0 +1,15 @@ + + + +李宥榆的個人檔案 + + + +

    李宥榆的個人檔案

    +

    金門大學

    +

    學號:111110504

    +

    https://www.facebook.com/profile.php?id=100015059806137

    +https://www.facebook.com/stories/447497979503364/?source=story_tray + + + diff --git "a/html/\350\250\273\345\206\212\350\241\250\345\226\256.html" "b/html/\350\250\273\345\206\212\350\241\250\345\226\256.html" new file mode 100644 index 00000000..274b6be9 --- /dev/null +++ "b/html/\350\250\273\345\206\212\350\241\250\345\226\256.html" @@ -0,0 +1,72 @@ + + + + + 註冊表單 + + + +
    +

    註冊表單

    + + + + + + + + + + + + + + + + +
    + + + + \ No newline at end of file diff --git "a/\347\237\251\351\231\243\347\233\270\345\212\240" "b/\347\237\251\351\231\243\347\233\270\345\212\240" new file mode 100644 index 00000000..142636be --- /dev/null +++ "b/\347\237\251\351\231\243\347\233\270\345\212\240" @@ -0,0 +1,11 @@ +function vadd(a,b) +{ + let r =[] + for (let i=0; i + + + + 註冊表單 + + + +
    +

    註冊表單

    + + + + + + + + + + + + + + + + +
    + + + + \ No newline at end of file