160 likes | 295 Views
計概實習. Week 7. HTML advanced. A bit, just a bit…. <html> <body> <h i > <p> <font> <b>,< i >,<u>. <a> < img > <table> < tr >,<td> < ul >,< ol >,<li>. DEPRECATED. Recap. < th > : Defines header cell <td colspan > : spans this cell for x columns
E N D
計概實習 Week7
HTML advanced A bit, just a bit…
<html> • <body> • <hi> • <p> • <font> • <b>,<i>,<u> • <a> • <img> • <table> • <tr>,<td> • <ul>,<ol>,<li> DEPRECATED Recap
<th>: Defines header cell • <td colspan>: spans this cell for x columns • <td rowspan>: spans this cell for xrows • <table border>: table border • <table cellpadding>: space between cell content and cell border • <table cellspacing>: space between cells <th>,<td col/rowspan>
<frameset>: divides screen into x rows or y columns with set px, %, or * • <frame src>: defines a frame from source src within a <frameset> !<frameset>takes up the ENTIRE ‘screen’! DEPRECATED <frameset>,<frame>
An “inline” frame that does NOT require <frameset> • Styling with CSS is recommended • Attributes: width, height, name… <iframe>
Specifies where to opened the linked document • _blank: new window/tab • _self: in same frame (default) • _parent: in parent frame • _top: full window • frame name: in a specified frame name <a target>
It’s a complicated issue! • Formats • Plugins • Browser compatibility • HTML version • Use <iframe> if possible Embed multimedia (1/2)
<video width="320" height="240" controls="controls"> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> <source src="movie.webm" type="video/webm"><objectdata="movie.mp4" width="320"height="240"><embedsrc="movie.swf" width="320"height="240"></object> </video> Embed multimedia (2/2)
id selector: #id1 {} • Used for unique elements • #div1 {text-align:center} • Class selector: .class1 {} • used for multiple elements • .center {text-align:center} • p.center {text-align:center} • http://www.w3schools.com/cssref/css_selectors.asp Selector
font-family • “Times New Roman” • font-size • small, medium, large, x%, … • font-style • normal, italic ~ oblique • font-weight • normal, bold, … Font
絕對路徑 AbsolutePath • 網址 • http://homepage.ntu.edu.tw/~r01725042/main/j.html • 完整的檔案位置 • C:\Users\Victor\Site\index.html • /home/usr/r01725042/index.html
相對路徑 RelativePath • index.html • <ahref=“aaa.html”>AAA</a> • aaa.html與index.html在同一層資料夾 • <imgsrc=“photo/bbb.png”> • photo與index.html在同一層資料夾 • bbb.png在photo資料夾底下
助教沒教!怎麼辦? • Html語法博大精深 • Tag • Attribute • Value • 自己上網查 • http://www.w3schools.com/html/default.asp • NothingbutGoogle!