來自:http://blog.csdn.net/dawanganban/article/details/18098193html
1、HTML是什麼?html5
HTML(hypertext mark-uplanguage)是 超文本標記語言, 主要的用處是作網頁, 能夠在網頁上顯示 文字、圖像、視頻、聲音…linux
HTML只能作靜態網頁android
2、HTML發展歷史web
html之父-Tim Berners-Lee
蒂姆·伯納斯-李(Tim Berners-Lee)1955年6月8日出生於英國倫敦
瀏覽器
關於詳細請看:http://blog.csdn.net/chinayaosir/article/details/2982025tomcat
3、W3C介紹
world wide web consortium 中文意思是W3C理事會或萬維網聯盟。W3C於1994年10月在麻省理工學院計算機科學實驗室成立,創立者是html之父Tim Berners-Lee。服務器
W3C組織是網絡標準制定的一個非盈利組織,像HTML、XHTML、CSS、XML的標準都是由W3C來定製。微信
一流公司作標準網絡
二流公司作服務
三流公司作產品
四流公司作項目
4、HTML的運行
html的基本結構
- <html>
- <head>
- <title>html結構</title>
- </head>
- <body>
-
- </body>
- </html>
一、本地運行(直接用瀏覽器打開)
二、遠程訪問
安裝例如tomcat服務器後遠程訪問。
5、html中的符號實體
6、圖片顯示及連接
- <html>
- <head>
- <title>html結構</title>
- </head>
- <body>
- <img src="http://img.my.csdn.net/uploads/201401/06/1389011264_6592.jpg" width="150px" alt="歡迎關注個人官方公衆微信"/>
- </body>
- </html>
- <html>
- <head>
- <title>html結構</title>
- </head>
- <body>
- <img src="http://img.my.csdn.net/uploads/201401/06/1389011264_6592.jpg" width="150px" alt="歡迎關注個人官方公衆微信"/>
- <a href="http://blog.csdn.net/dawanganban">
- <img src="http://avatar.csdn.net/D/F/D/1_lxq_xsyu.jpg" alt="來點我啊" title="點我啊" width="150px"/>
- </a>
- </body>
- </html>
7、顯示錶格
- <html>
- <head>
- <title>html結構</title>
- </head>
- <body>
-
- <table border="1px" width="300px">
- <tr align="center" bgcolor="yellow">
- <td>1</td><td>2</td>
- </tr>
- <tr align="center">
- <td>3</td><td>4</td>
- </tr>
- <tr align="center">
- <td>5</td><td>6</td>
- </tr>
- <table>
-
- </body>
- </html>
border:邊框的寬度,默認值是0
width=」60%" :表格的寬度,佔父容器的60%
cellpadding="10" :表示內容和單元格的距離
cellspacing="10" :表示單元格和其餘單元格之間的距離
表格的對齊:
align屬性:水平對齊
valign屬性:垂直對齊
不規則表格:
colspan屬性:合併水平單元格
rowspan屬性:合併豎直單元格
8、框架
經過使用框架,你能夠在同一個瀏覽器窗口中顯示不止一個頁面。每份HTML文檔稱爲一個框架,而且每一個框架都獨立於其餘的框架。使用框架的壞處:
開發人員必須同時跟蹤更多的HTML文檔
很難打印整張頁面
-
框架結構標籤(<frameset>)
-
- 框架結構標籤(<frameset>)定義如何將窗口分割爲框架
- 每一個 frameset 定義了一系列行或列
- rows/columns 的值規定了每行或每列佔據屏幕的面積
框架標籤(Frame)
Frame 標籤訂義了放置在每一個框架中的 HTML 文檔。
主頁面.html (注意使用框架的時候,裏面不能用body標籤)
- <html>
- <head>
- <title>html結構</title>
- </head>
- <frameset rows="150,*">
- <frame name="frame0" src="title.html" frameborder="0">
- <frameset cols="20%,*">
- <frame name="frame1" src="a.html" noresize frameborder="0"/>
- <frame name="frame2" src="b.html" frameborder="0"/>
- </frameset>
- </frameset>
-
- </html>
noresize=「noresize"的做用是不能拉伸每一個frame
frameborder="0"將邊框寬度設爲0
title.html
- <body bgcolor="#FFA54F">
- <div id="container">
- <div id="header">
- <div class="header">
- <div id="blog_title">
- <h1>
- <a href="http://blog.csdn.net/dawanganban">大碗幹拌</a></h1>
- <h2>興趣是堅持的理由,網絡是最牛的老師,博客是最好的筆記,交流是創新的源頭</h2>
- <div class="clear">
- </div>
- </div>
- <div class="clear">
- </div>
- </div>
- </div>
- </body>
a.html
- <body bgcolor="pink">
-
- <a href="b.html" target="frame2">返回主頁>></a><br><br/><br/>
- <a href="http://blog.csdn.net/column/details/android-growup.html" target="frame2">Android菜鳥的成長筆記</a><br/>
- <a href="http://blog.csdn.net/column/details/dawanganban-html5.html" target="frame2">小強的HTML5移動開發之路</a><br/>
- <a href="http://blog.csdn.net/column/details/dawanganban-linux-n.html" target="frame2">鳥哥的Linux私房菜筆記</a><br/>
- </body>
b.html
- <body bgcolor="#F2F2F2">
- <img src="http://img.my.csdn.net/uploads/201401/06/1389011264_6592.jpg" width="150px" alt="歡迎關注個人官方公衆微信"/>
- <a href="http://blog.csdn.net/dawanganban">
- <img src="http://avatar.csdn.net/D/F/D/1_lxq_xsyu.jpg" alt="來點我啊" title="點我啊" width="150px"/>
- </a>
- </body>