2022年11月2日 星期三

網頁的基本架構

 

學習目標:

1. 掌握網頁的基本架構。

 結果如下: 祇有一行。

 

原始碼:

<!DOCTYPE html>

<html>

 

  <head>

    <meta charset="utf-8">

    <title>My First Webpage</title>

  </head>

 

  <body>

     This is my First Webpage!

  </body>

 

</html>

沒有留言:

張貼留言

迴圈處理(使用FOR)

    var i=1; for (i;i<=10;i=i+1)   document.write(i);