9. Server & Client WindowsXP IE Windows2000 IE Macintosh Windows98 Netscape พัฒนาเว็บด้วย HTML Editor, HTML Generator บน Windows Server : Unix/NT upload
10. Server & Client Text Browser คนพิการ Mobile Phone PDA พัฒนาเว็บด้วย HTML Editor, HTML Generator บน Windows Server : Unix/NT upload
22. TIS-620/Windows-874/UTF-8 windows-874 เป็น character Set ที่ใช้ภายในระบบปฏิบัติการที่ผลิตโดยบริษัท ไมโครซอฟต์ เท่านั้น ไม่ได้เป็น character Set ที่ใช้ในการแลกเปลี่ยนข้อมูลระหว่างเครื่อง มีส่วนขยายเพื่อการแสดงผล เช่น bullet, smart quote, dash ฯลฯ tis-620 เป็น character Set ที่จดทะเบียนถูกต้อง เป็นที่รับรู้กันทั่วโลก ทุกระบบปฏิบัติการ ( แม้แต่ระบบปฏิบัติการของไมโครซอฟต์เอง )
29. Bit depth drastically affects file size 24 bit color 16 million colors 1.55 MB 8 bit color 256 colors 518k 8 bit gray scale 256 shades of gray 518k 1 bit dithered image 64k
42. Color Mode A color mode determines the color model used to display and print images. Common models include RGB (red, green, blue) CMYK (cyan, magenta, yellow, black) …
43. RGB model RGB model used for lighting, video, and monitors So, computer’s monitor only has 3 colors Red Green Blue
44. CMYK model The CMYK model is based on the light-absorbing quality of ink printed on paper.
45. ลักษณะของหน้าเว็บที่เหมาะสม หน้าเว็บที่เหมาะสม ไม่มีข้อกำหนดที่ชัดเจน ควรคำนึงถึง กลุ่มเป้าหมาย (Personal/Business) ลักษณะของคอมพิวเตอร์ที่กลุ่มเป้าหมายใช้ (Screen Area ของจอภาพ ) Screen Area ที่เหมาะสมในปัจจุบัน คือ 1024 x 768 pixels Web Area ที่เหมาะสมคือ ความยาวไม่เกิน 98 0 pixel ความสูงไม่มีข้อกำหนดตายตัว แต่ส่วน Header ของเว็บไม่ควรเกินครึ่งหนึ่งของพื้นที่ที่เหลือ
59. Web Metadata Web Title URL :Uniform Resource Locator H1, H2, H3 Tag Contents Alternate Text for Image/Multimedia Meta Tag Description เนื้อหา 1 – 2 Kb ของเอกสารเว็บ Authors Keyword Generator
60. Web Title <head> <title>NECTEC : Thailand : National Electronics and Computer Technology Center</title> </head> เปิดดูด้วยคำสั่ง View, Source
72. Image Search Google ค้นหาภาพได้จาก คำที่อยู่ใกล้ภาพ / ข้างเคียงภาพ (adjacent) Image Caption Links Alt Attribute ของ Image Tag Embedded Metadata <img src=“aaa.jpg” alt=“Computer System” >
73.
74. Image Metadata Exchangeable Image File Format (Exif) Metadata ระบุอัตโนมัติเมื่อมีการถ่ายภาพด้วยกล้องดิจิทัล พัฒนาโดย Japan Electronic Industries Development Association (JEIDA) International Press Telecommunications Council (IPTC) Metadata Metadata ที่ผู้ใช้สามารถบันทึกเพิ่มเติมได้ พัฒนาโดย International Press Telecommunications Council XNView
78. CSS : Standard Web Solution เว็บเบราว์เซอร์แต่ละค่ายกำหนดคำสั่ง HTML และ Attribute แตกต่างกันออกไป เกิดปัญหาในการสร้างเอกสารเว็บที่สนับสนุนกับ ทุกเบราว์เซอร์ เกิดปัญหาในการปรับแก้ไขเอกสารเว็บ การควบคุมการแสดงผล Tag หรือ Attribute ด้วย CSS จึงเป็นทางออกที่ W3C แนะนำ
79. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles are normally stored in Style Sheets External Style Sheets can save you a lot of work External Style Sheets are stored in CSS files Multiple style definitions will cascade into one
81. CSS syntax คั่นระหว่าง Property และ value ด้วยเครื่องหมาย colon และ้ล้อมรอบด้วย { } curly braces body {color: black}
82. CSS syntax ถ้า value ประกอบด้วยคำหลายคำ ( มีช่องว่างระหว่างคำ ) ต้องใส่เครื่องหมายคำพูดกำกับ (quotes) p {font-family: "sans serif"} p {font-family: tahoma}
83. CSS syntax สามารถระบุ property ได้มากกว่า 1 โดยใช้เครื่องหมาย semi-colon แบ่ง p {text-align : center ; color:red} เพืื่่อให้อ่านได้สะดวกควรเปลียนรูปแบบเป็น p { text-align : center ; color:red }
84. CSS syntax สามารถจัดกลุ่ม Selector หลายๆ ตัว เมืื่่อมี Property เดียวกัน ด้วยเครื่องหมาย comma h1,h2,h3,h4,h5,h6 { color: green } h1 { color: green} h2 { color: green } h3 { color: green } h4 { color: green } h5 { color: green } h6 { color: green }
85. Class Selector แท็ก HTMl แต่ละ Tag สามารถกำหนดรูปแบบการแสดงแตกต่างกันได้ โดยการสร้าง Class selector ดังนี้ p.right {text-align: right} p.center {text-align: center} ขึ้นต้นด้วย Tag ตามด้วยจุด และต่อด้วย Attribute ไม่อนุญาตให้ขึ้นต้นชื่อ class ด้วยตัวเลข
86. Class Selector การใ้ช้งาน <p class="right"> This paragraph will be right-aligned. </p> <p class="center"> This paragraph will be center-aligned. </p>
87. Class Selector กรณีที่ Attribute เดียวกัน และ้ต้องการประกาศใช้กับทุก Tag สามารถกำหนด Certain Class ได้ดังนี้ .center {text-align: center}
88. Class Selector การใช้ Certain Class มีรูปแบบดังนี้ <h1 class="center"> This heading will be center-aligned </h1> <p class="center"> This paragraph will also be center-aligned. </p>
89. ID Selector Selector ที่ไม่ใช้แท็กคำสั่งของ HTML เรียกว่า ID Selector ประกาศขึ้นต้นด้วยเครื่องหมาย # ห้ามใช้ตัวเลขขึ้นต้นชื่อ #green {color: green} <h1 id="green">Some text</h1> <p id="green">Some text</p>
97. Alternate Text <IMG SRC=“ ชื่อไฟล์ภาพ ” ALT=“ คำอธิบายภาพ” > คำอธิบายภาพควรสื่อความหมายชัดเจน Firefox ไม่แสดงคำอธิบายภาพ แต่ทำงานกับ Attribute TITLE ฃ
98. 1. "Image of George Washington" 2. "George Washington, the first president of the United States" 3. An empty alt attribute (alt="") will suffice. 4. "George Washington"
99. 1. An empty alt attribute (alt="") will suffice. 2. "Wikipedia entry for George Washington" 3. "Read More" 4. "George Washington"
100. 1. "George Washington" 2. "Painting of George Washington" 3. "Painting of George Washington crossing the Delaware River" 4. "Painting of George Washington crossing the Delaware River. Swirling waves surround the boat where the majestic George Washington looks forward out of the storm and into the rays of light across the river as he leads his wary troops to battle."
101. 1. "Employment Application" 2. "PDF File" 3. "PDF icon" 4. The content of the image is presented in context, so (alt="") is appropriate.
102. 1. "decorative line" 2. "Beginning of footer" 3. "separator" 4. alt="" will suffice
103. สิ่งที่ไม่ควรทำ 1. "next" 2. "next page" 3. "George Washington's Presidency" 4. "Continue to George Washington's Presidency"
104. Empty Alt (alt=“”) ภาพที่ไม่สื่อความหมาย ภาพที่ถูกตัดเป็นหลายชิ้น แต่ไม่มีผลต่อการทำงาน ภาพ Background
109. สีนั้นสำคัญไฉน ? http :// www . accesskeys . org / tools / color - contrast . html
110. การลงรหัสที่ ไม่ถูกต้อง <p> <font size=“+3”><b> This is a heading </b></font> </p> <p>Blah blah blah</p> <p> <font size=“+3”><b> This is another heading </b></font> </p> <p>Blah blah blah</p> <p> <font size=“+2”><b> A sub-section </b></font> </p> <p>Blah blah blah</p>
111. การลงรหัสที่ถูกต้อง Use markup and style sheets and do so properly <h1> This is a heading </h1> <p>Blah blah blah</p> <h1> This is another heading </h1> <p>Blah blah blah</p> <h2> A sub-section </h2> <p>Blah blah blah</p> Outline: This is a heading This is another heading A sub-section
112. สร้างเอกสาร HTML ที่ได้มาตรฐาน < ! DOCTYPE HTML PUBLIC "-// W3C // DTD HTML 4.01 Transitional // EN " " http :// www . w3 . org / TR / html4 / loose . dtd " >