到底什麼是html呢?這個問題還真不容易回答,
只能說他是架構網頁的基本元素(element→單純炫耀)
當你在瀏覽望頁時,按下滑鼠右鍵選擇檢視原始檔,
看到的就是所謂的html原始碼了,這邊選幾個大家常用的html碼介紹!
<font color="red">*</font>表示可能在無名無法使用!
超連結:
基礎範例:<a href="連結網址" target="目標框架">連結名稱</a>
<a href="http://cleanwind.mineserver.ath.cx" target="_blank">清風小築</a>
請點我一下: <a href="http://cleanwind.mineserver.ath.cx" target="_blank">清風小築</a>
<font color="red">*</font>目標框架(寫在target後,只對於使用多框架編寫而成的網頁有效):_blak
:開新視窗_parent
:父框架_self
:相同框架_top
:整頁
特殊應用:<a href="" onmouseover="alert('清風小築')">版權所屬</a>
請將滑鼠移過來:<a href="" onmouseover="alert('清風小築')">版權所屬</a>
如果不寫target,則會將連結網址載入該視窗,<a href="http://cleanwind.mineserver.ath.cx">清風小築</a>
請點我一下:<a href="http://cleanwind.mineserver.ath.cx">清風小築</a>
不想讓超連結出現線的話,則加入STYLE="text-decoration:none"
<a href="http://cleanwind.mineserver.ath.cx" STYLE="text-decoration:none">清風小築</a>
請點我一下:<a href="http://cleanwind.mineserver.ath.cx" STYLE="text-decoration:none">清風小築</a>
下週待續