J2EE Part 1

1.設定環境變數
我的電腦 (按右鍵)--> 內容 -->進階-->環境變數-->加入三個變數
1.JAVA_HOME
   C:\Program Files\Java\jdk1.7.0_04
2.CALSSPATH
   %JAVA_HOME%\lib
3.path
   %JAVA_HOME%\bin




2.Web server
IIS
Apache

安裝 Appserv
Appserv 包含:
Apach HTTP Server   (web 伺服器 HTTPd)
MySQL DataBase  (資料庫)
PHP HyperText Processer
PHP Myadmin   (管理介面)

3.HTML
1.插入圖片
<img src=''>

2.跑馬燈(由右至左)
<marquee>
<font color='blue' face='標楷體' size='10'>Welcome</font>
</marquee>


3.跑馬燈(由左至右)
<marquee direction='right'>
<font> here </font>
</marquee>

PS:上下左右皆可

4.超連結
<a href='www.pcschool.com.tw'>巨匠</a>

PS:超連結+更改字型大小顏色
<a href='www.pcschool.com.tw'>
<font color='yellow' size='10'>
巨匠
</font>
</a>

PS:超連結改成圖片

<a href='www.pcschool.com.tw'>
<img src=''>
</a>

No comments: