SlideShare a Scribd company logo
Introduction to Web Design
Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
Clients & Servers Clients (Browser) Internet Explorer Firefox Mozilla Netscape Opera Amaya AOL Chrome Servers Apache Microsoft IIS Netscape zeus AOLserver AV JavaWebServer Oracle
Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
Internet Service Providers   Connect Clients to the Internet BT AOL Virgin PlusNet Dial-Up DSL/Cable
Web Components Clients and Servers Internet Service Providers Website Hosting Services Domains Names, URL’s and Ips Registrars
Web Hosting Services   Connects Web Sites to the Internet Computer (server) farm Web server software (Apache, IIS etc.) Firewall hardware and software IT services  (Backup, troubleshooting, hardware repair) Disk space Bandwidth / connection to internet Routers and switchers Email server / storage
Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
Domain’s URL’s and IPs Domain name: The specific address of a computer on the Internet  microsoft.com Uniform Resource Locator (URL):  http://www.microsoft.com/faqs.html Internet protocol (IP) address 192.168.1.1
Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
Domain Registrar A company that provides domain name registration services for a fee.  Maintain database which maps domain names to IP addresses Propagate new domain name/IP address information across the internet
Creating a Web Site Choose a domain name Register with a Registrar Choose a hosting service Tell Registrar the IP address Create web content Store (publish) onto hosting server (FTP) Submit new site to search engines
12 Principles of good web design Visitor-centric, clear purpose Progressive disclosure (not overwhelming) Displays quickly Browser compatible Intuitive navigation Spelling, grammar, writing Secure (eCommerce) Attractive design, easy to read Cultural bias? (Regional? Domestic? International?) No technical problems (broken links, buggy scripts) Maintainable (separate content from style) Search Engine Accessible
Creating your Web Site Technologies & Tools Markup Languages  HTML, DHTML, XML, XSLT, etc.... Cascading Style Sheets (CSS) Scripting languages perl,javascript,php, etc.... Web creation and editing software Notepad, FrontPage, Coldfusion, Dreamweaver, Flash, Hotmetal, Site Builder, etc..
Markup Languages - HTML Derived from SGML  (Standard Generalized Markup Language ) H yper T ext  M arkup  L anguage
HTML Fundamentals Clear text, case insensitive Ignores white space Comprised of tags  <tag /> Open tags and closed tags
HTML - Fundamentals Open (self-closing) tags <name attributes/> <hr/>, <br/> <img src=“url” width=‘100px’  height=’60px’/> Closed tags <name attributes> stuff </name> <b>text to be bolded</b> <h1>level 1 heading text</h1> Comments < ! - -  comment text -- >
HTML – Fundamentals Document Structure Header Body < / HTML> < HTML >
HTML – Fundamentals Basic Structure <html> <head> <title>  The title of your html page  </title> <meta_tags/> </head> <body> <! - - your web page content and markup  - -> </body> </html>
HTML - Fundamentals header <body> Hello world </body>
HTML - Fundamentals header <body> Alexandra Park School London N11 2AZ </body> Alexandrapark School London N11 2AZ
HTML - Fundamentals header <body> <b> Alexandra Park School </b><br> London <br> N11 2AZ <br> </body>
HTML - Fundamentals header <body> <font face=“Arial,Times,Courier”  color=“green” size=“3”> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br> </font> </body>
HTML - Fundamentals header <body> <p align=‘center’> <font face=“Arial,Lucida Sans”  color=“green” size=“3”> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br></font> </p> </body>
HTML - Fundamentals header <body> <p align=‘center’> <font face=“Arial,Lucida Sans”  color=“green” size=“3”> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br></font> </p> <img src=‘http://www.myserver.com/images/aps.jpg’/> </body>
HTML - Fundamentals header <body> <p align=‘center’> <font face=‘Arial,Lucida Sans’  color=‘green’ size=3> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br></font> </p> <img src=‘http://www.domain.com/images/aps.jpg’> <a href=‘about.html’>Read about APS</a> </body>
HTML - Fundamentals
HTML - Fundamentals A NCHORS (Hypertext Link) <A href=“url” attributes>Displayed text </A> Attributes NAME = “text”  TITLE = &quot;text&quot;  TARGET = “frame_name|window_name”
HTML – Fundamentals Hypertext links Click this link opens  mywebpage.html  in the window / frame named “ window2 ” <a href=“mywebpage.html” target=“window2” >Click this link </a> window2
HTML – Fundamentals Hyperlink Colours <BODY  LINK= colour ,  VLINK= colour ,  ALINK= colour  > <BODY LINK= “blue” , VLINK= “purple” , ALINK= “red”  > <BODY LINK= “#0000FF” , VLINK= “#FF00FF” , ALINK= “#FF0000”  > LINK – Colour of link before it’s been followed ALINK – Colour of link while it’s being followed (Active LINK) VLINK – Colour of link after it’s been followed (Visited LINK)
HTML – Fundamentals Colours colour = “red”  (Browser compatibility issues) colour = “#FF0000” values vary from 00 to FF (hexadecimal) 0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f Red Green Blue # FF   FF   FF
HTML – Fundamentals Headings Renders text as a heading, the rendering depending on the level of heading selected. Headings should be automatically spaced from the body text. <h1>Heading 1 level text</h1> <h2>Heading 2 level text</h2> <h3>Heading 3 level text</h3> <h4>Heading 4 level text</h4> <h5>Heading 5 level text</h5> <h6>Heading 6 level text</h6>
HTML – Fundamentals Lists Unordered list <ul> <li>apples</li> <li>bananas</li> <li>grapes</li> <li>strawberries</li> </ul> Ordered list <ol type=‘i’ start=‘2’> <li>apples</li> <li>bananas</li> <li>grapes</li> <li>strawberries</li> </ol>
HTML – Fundamentals Lists Unordered list apples bananas grapes strawberries Ordered list apples bananas grapes strawberries
HTML – Fundamentals Tables <TABLE> <CAPTION ALIGN=&quot;bottom&quot;>Class Grades</CAPTION> <TR> <TH>Student</TH> <TH>Grade</TH> </TR> <TR> <TD>Tom</TD> <TD>B+</TD> </TR> <TR> <TD>Sue</TD> <TD>A-</TD> </TR> </TABLE>   TR = Table Row TH = Table Header TD = Table Data Cell
HTML – Fundamentals Tables
HTML – Fundamentals Tables - Attributes BORDER= value ALIGN= left | right|center CELLSPACING= value CELLPADDING= value WIDTH= value | percent
HTML – Fundamentals Tables <TABLE BORDER=1 WIDTH=“50%&quot; CELLPADDING=“6” CELLSPACING=“2” ALIGN=&quot;RIGHT&quot;> <CAPTION ALIGN=&quot;bottom&quot;>Class Grades</CAPTION> <TR> <TH>Student</TH> <TH>Grade</TH> </TR> <TR> <TD>Tom</TD> <TD>B+</TD> </TR> <TR> <TD>Sue</TD> <TD>A-</TD> </TR> </TABLE>
HTML – Fundamentals Tables Class Grades Student Grade Tom B- Sue A+
HTML – Fundamentals Tables rowspan and colspan
HTML – Fundamentals <TABLE BORDER=1 WIDTH=&quot;50%&quot; CELLPADDING=5 ALIGN=&quot;center&quot;> <TR> <TD  colspan=2  align='center'> <font color=&quot;red&quot;><b>Student Grades</b></font> </TD> </TR> <TR> <TD><b>Student</b></TD> <TD><b>Grade</b></TD> </TR> <TR> <TD>Tom</TD> <TD  rowspan=2 >A</TD> </TR> <TR> <TD>Sue</TD> </TR> </TABLE>
HTML – Fundamentals Student Grades Student Grade Tom A Sue
Screen Compatibility 1280 x 1024 1024 x 768 800 x 600 640 x 480
HTML – Fundamentals Tables Tables are frequently used to layout the basic web page design . 640 1280
HTML – Fundamentals Images <img src=“images/pic1.jpg” width=75px, height=50px />
HTML – Fundamentals Using Images Images take longer to download than text The larger the image, the slower the page Optimize images Use thumbnail images
HTML – Fundamentals Other uses of Images Page background  (not recommended) <body background-image = “url” > <body class=“background”> body.background { background-image:$url; } Table background <table background-image=“url”> <table class=“background”> table.background  { backlground-image:url; }
Content Management Systems Joomla Wordpress Drupal PHPNuke PHP-Fusion Copyright 2005 - The Small Business Depot
Resources http://www.w3schools.com/ HTML Tutorials   Learn HTML Learn XHTML Learn CSS Learn TCP/IP Browser Scripting   Learn JavaScript Learn DHTML Learn VBScript Learn HTML DOM Learn WMLScript   Server Scripting   Learn SQL Learn ASP Learn ADO Learn PHP XML Tutorials   Learn XML Learn XSL Learn XSLT Learn XSL-FO Learn XPath Learn XQuery Learn XLink Learn XPointer Learn DTD Learn Schema Learn XML DOM Learn XForms Learn SOAP Learn WSDL Learn RDF Learn RSS Learn WAP . NET (dotnet)   .NET Microsoft .NET ASP .NET Mobile Multimedia   Learn Media Learn SMIL Learn SVG Learn Flash Web Building   Web Building Web W3C Web Browsers Web Quality Web Semantic Web Careers Web Hosting Web Certification

More Related Content

PPT
Introduction to web design
PPT
Introduction to Web Design
PPT
Origins and evolution of HTML and XHTML
PPTX
DOCX
HTML Web design english & sinhala mix note
PDF
Intro to html revised2
PPTX
Html and Xhtml
PPTX
Wdf 222chp iii vi
Introduction to web design
Introduction to Web Design
Origins and evolution of HTML and XHTML
HTML Web design english & sinhala mix note
Intro to html revised2
Html and Xhtml
Wdf 222chp iii vi

What's hot (20)

PPTX
Learn HTML Step By Step
PPT
Introduction To HTML
PPTX
HyperText Markup Language - HTML
PPT
Html ppt
PDF
HTML practical guide for O/L exam
PPTX
PPTX
Html coding
PDF
Introduction to XML, XHTML and CSS
PPTX
Elements of html powerpoint
PPT
Learning Html
PPTX
Html ppt
PPTX
PPTX
HTML Fundamentals
PPT
PPT
Basics ogHtml
PPTX
WWW and HTTP
PPT
SEO Audit TNT Express
PPTX
05 RD PoSD Tutorial_xhtml_to_html5_2016
Learn HTML Step By Step
Introduction To HTML
HyperText Markup Language - HTML
Html ppt
HTML practical guide for O/L exam
Html coding
Introduction to XML, XHTML and CSS
Elements of html powerpoint
Learning Html
Html ppt
HTML Fundamentals
Basics ogHtml
WWW and HTTP
SEO Audit TNT Express
05 RD PoSD Tutorial_xhtml_to_html5_2016
Ad

Viewers also liked (20)

PPTX
Mobile Application Development (Services & Products), A Complete Review
KEY
WordPress Bootcamp Part 1 - Introduction
PPTX
Thrive Internet Marketting Seminar
PPT
Interface design for the web
PDF
Managing WordPress Websites - Training Course - Feb 2015
PDF
Introduction to Web Design
PPTX
Introduction to WordPress 2016
PPTX
Custom WordPress theme development
PPT
Introduction to Wordpress
PPTX
Introduction to WordPress
PPS
Web Site Design Principles
PDF
English Speaking Session: Introduction (WordCamp Tokyo 2015)
PPTX
The Best Practices of Making WordPress Site Multilingual
PDF
WordPressで行う継続的インテグレーション入門編
PDF
Web Site Strategy - Building an Effective Website
PDF
Bootstrap 3.
PDF
Internet Indonesia Dalam Angka (2015 - 2016)
PPTX
Top 10 Web Design Trends for 2015
PDF
Infografis Penetrasi dan Perilaku Pengguna Internet Indonesia 2016 APJII
KEY
Web Design 101
Mobile Application Development (Services & Products), A Complete Review
WordPress Bootcamp Part 1 - Introduction
Thrive Internet Marketting Seminar
Interface design for the web
Managing WordPress Websites - Training Course - Feb 2015
Introduction to Web Design
Introduction to WordPress 2016
Custom WordPress theme development
Introduction to Wordpress
Introduction to WordPress
Web Site Design Principles
English Speaking Session: Introduction (WordCamp Tokyo 2015)
The Best Practices of Making WordPress Site Multilingual
WordPressで行う継続的インテグレーション入門編
Web Site Strategy - Building an Effective Website
Bootstrap 3.
Internet Indonesia Dalam Angka (2015 - 2016)
Top 10 Web Design Trends for 2015
Infografis Penetrasi dan Perilaku Pengguna Internet Indonesia 2016 APJII
Web Design 101
Ad

Similar to Introduction to web design (20)

PPT
Html Intro2
PPT
Lecture 4
PPT
Introduction to HTML, CSS, and Scripting In the world of web development, thr...
PPTX
PPTX
PPT
Introduction to web design
PPT
Download Workshop Lecture
DOC
web technologiesUnit 1
PDF
Unit 2 (it workshop)
PPT
Understanding THML
PPTX
All About HTML Web Development and its fundamentals
PPTX
IPW HTML course
PPT
Webpages And Dynamic Content
PPT
Table tags 2
PPT
Introduction to web_design_cs_final_ason
DOC
Basic Web Design.doc
PPTX
HTML Bootcamp
PPT
HTML & CSS Workshop Notes
PPT
Introduction to HTML
Html Intro2
Lecture 4
Introduction to HTML, CSS, and Scripting In the world of web development, thr...
Introduction to web design
Download Workshop Lecture
web technologiesUnit 1
Unit 2 (it workshop)
Understanding THML
All About HTML Web Development and its fundamentals
IPW HTML course
Webpages And Dynamic Content
Table tags 2
Introduction to web_design_cs_final_ason
Basic Web Design.doc
HTML Bootcamp
HTML & CSS Workshop Notes
Introduction to HTML

Recently uploaded (20)

PDF
Supply Chain Operations Speaking Notes -ICLT Program
PPTX
GDM (1) (1).pptx small presentation for students
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Institutional Correction lecture only . . .
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Lesson notes of climatology university.
PPTX
Pharma ospi slides which help in ospi learning
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Classroom Observation Tools for Teachers
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Insiders guide to clinical Medicine.pdf
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
master seminar digital applications in india
PPTX
PPH.pptx obstetrics and gynecology in nursing
Supply Chain Operations Speaking Notes -ICLT Program
GDM (1) (1).pptx small presentation for students
TR - Agricultural Crops Production NC III.pdf
Institutional Correction lecture only . . .
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Renaissance Architecture: A Journey from Faith to Humanism
2.FourierTransform-ShortQuestionswithAnswers.pdf
Microbial disease of the cardiovascular and lymphatic systems
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Lesson notes of climatology university.
Pharma ospi slides which help in ospi learning
VCE English Exam - Section C Student Revision Booklet
Classroom Observation Tools for Teachers
102 student loan defaulters named and shamed – Is someone you know on the list?
Insiders guide to clinical Medicine.pdf
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
master seminar digital applications in india
PPH.pptx obstetrics and gynecology in nursing

Introduction to web design

  • 2. Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
  • 3. Clients & Servers Clients (Browser) Internet Explorer Firefox Mozilla Netscape Opera Amaya AOL Chrome Servers Apache Microsoft IIS Netscape zeus AOLserver AV JavaWebServer Oracle
  • 4. Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
  • 5. Internet Service Providers Connect Clients to the Internet BT AOL Virgin PlusNet Dial-Up DSL/Cable
  • 6. Web Components Clients and Servers Internet Service Providers Website Hosting Services Domains Names, URL’s and Ips Registrars
  • 7. Web Hosting Services Connects Web Sites to the Internet Computer (server) farm Web server software (Apache, IIS etc.) Firewall hardware and software IT services (Backup, troubleshooting, hardware repair) Disk space Bandwidth / connection to internet Routers and switchers Email server / storage
  • 8. Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
  • 9. Domain’s URL’s and IPs Domain name: The specific address of a computer on the Internet microsoft.com Uniform Resource Locator (URL): http://www.microsoft.com/faqs.html Internet protocol (IP) address 192.168.1.1
  • 10. Web Components Clients and Servers Internet Service Providers Web Site Hosting Services Domains Names, URL’s and Ips Registrars
  • 11. Domain Registrar A company that provides domain name registration services for a fee. Maintain database which maps domain names to IP addresses Propagate new domain name/IP address information across the internet
  • 12. Creating a Web Site Choose a domain name Register with a Registrar Choose a hosting service Tell Registrar the IP address Create web content Store (publish) onto hosting server (FTP) Submit new site to search engines
  • 13. 12 Principles of good web design Visitor-centric, clear purpose Progressive disclosure (not overwhelming) Displays quickly Browser compatible Intuitive navigation Spelling, grammar, writing Secure (eCommerce) Attractive design, easy to read Cultural bias? (Regional? Domestic? International?) No technical problems (broken links, buggy scripts) Maintainable (separate content from style) Search Engine Accessible
  • 14. Creating your Web Site Technologies & Tools Markup Languages HTML, DHTML, XML, XSLT, etc.... Cascading Style Sheets (CSS) Scripting languages perl,javascript,php, etc.... Web creation and editing software Notepad, FrontPage, Coldfusion, Dreamweaver, Flash, Hotmetal, Site Builder, etc..
  • 15. Markup Languages - HTML Derived from SGML (Standard Generalized Markup Language ) H yper T ext M arkup L anguage
  • 16. HTML Fundamentals Clear text, case insensitive Ignores white space Comprised of tags <tag /> Open tags and closed tags
  • 17. HTML - Fundamentals Open (self-closing) tags <name attributes/> <hr/>, <br/> <img src=“url” width=‘100px’ height=’60px’/> Closed tags <name attributes> stuff </name> <b>text to be bolded</b> <h1>level 1 heading text</h1> Comments < ! - - comment text -- >
  • 18. HTML – Fundamentals Document Structure Header Body < / HTML> < HTML >
  • 19. HTML – Fundamentals Basic Structure <html> <head> <title> The title of your html page </title> <meta_tags/> </head> <body> <! - - your web page content and markup - -> </body> </html>
  • 20. HTML - Fundamentals header <body> Hello world </body>
  • 21. HTML - Fundamentals header <body> Alexandra Park School London N11 2AZ </body> Alexandrapark School London N11 2AZ
  • 22. HTML - Fundamentals header <body> <b> Alexandra Park School </b><br> London <br> N11 2AZ <br> </body>
  • 23. HTML - Fundamentals header <body> <font face=“Arial,Times,Courier” color=“green” size=“3”> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br> </font> </body>
  • 24. HTML - Fundamentals header <body> <p align=‘center’> <font face=“Arial,Lucida Sans” color=“green” size=“3”> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br></font> </p> </body>
  • 25. HTML - Fundamentals header <body> <p align=‘center’> <font face=“Arial,Lucida Sans” color=“green” size=“3”> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br></font> </p> <img src=‘http://www.myserver.com/images/aps.jpg’/> </body>
  • 26. HTML - Fundamentals header <body> <p align=‘center’> <font face=‘Arial,Lucida Sans’ color=‘green’ size=3> <b>Alexandra Park School</b><br> London<br> N11 2AZ<br></font> </p> <img src=‘http://www.domain.com/images/aps.jpg’> <a href=‘about.html’>Read about APS</a> </body>
  • 28. HTML - Fundamentals A NCHORS (Hypertext Link) <A href=“url” attributes>Displayed text </A> Attributes NAME = “text” TITLE = &quot;text&quot; TARGET = “frame_name|window_name”
  • 29. HTML – Fundamentals Hypertext links Click this link opens mywebpage.html in the window / frame named “ window2 ” <a href=“mywebpage.html” target=“window2” >Click this link </a> window2
  • 30. HTML – Fundamentals Hyperlink Colours <BODY LINK= colour , VLINK= colour , ALINK= colour > <BODY LINK= “blue” , VLINK= “purple” , ALINK= “red” > <BODY LINK= “#0000FF” , VLINK= “#FF00FF” , ALINK= “#FF0000” > LINK – Colour of link before it’s been followed ALINK – Colour of link while it’s being followed (Active LINK) VLINK – Colour of link after it’s been followed (Visited LINK)
  • 31. HTML – Fundamentals Colours colour = “red” (Browser compatibility issues) colour = “#FF0000” values vary from 00 to FF (hexadecimal) 0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f Red Green Blue # FF FF FF
  • 32. HTML – Fundamentals Headings Renders text as a heading, the rendering depending on the level of heading selected. Headings should be automatically spaced from the body text. <h1>Heading 1 level text</h1> <h2>Heading 2 level text</h2> <h3>Heading 3 level text</h3> <h4>Heading 4 level text</h4> <h5>Heading 5 level text</h5> <h6>Heading 6 level text</h6>
  • 33. HTML – Fundamentals Lists Unordered list <ul> <li>apples</li> <li>bananas</li> <li>grapes</li> <li>strawberries</li> </ul> Ordered list <ol type=‘i’ start=‘2’> <li>apples</li> <li>bananas</li> <li>grapes</li> <li>strawberries</li> </ol>
  • 34. HTML – Fundamentals Lists Unordered list apples bananas grapes strawberries Ordered list apples bananas grapes strawberries
  • 35. HTML – Fundamentals Tables <TABLE> <CAPTION ALIGN=&quot;bottom&quot;>Class Grades</CAPTION> <TR> <TH>Student</TH> <TH>Grade</TH> </TR> <TR> <TD>Tom</TD> <TD>B+</TD> </TR> <TR> <TD>Sue</TD> <TD>A-</TD> </TR> </TABLE> TR = Table Row TH = Table Header TD = Table Data Cell
  • 37. HTML – Fundamentals Tables - Attributes BORDER= value ALIGN= left | right|center CELLSPACING= value CELLPADDING= value WIDTH= value | percent
  • 38. HTML – Fundamentals Tables <TABLE BORDER=1 WIDTH=“50%&quot; CELLPADDING=“6” CELLSPACING=“2” ALIGN=&quot;RIGHT&quot;> <CAPTION ALIGN=&quot;bottom&quot;>Class Grades</CAPTION> <TR> <TH>Student</TH> <TH>Grade</TH> </TR> <TR> <TD>Tom</TD> <TD>B+</TD> </TR> <TR> <TD>Sue</TD> <TD>A-</TD> </TR> </TABLE>
  • 39. HTML – Fundamentals Tables Class Grades Student Grade Tom B- Sue A+
  • 40. HTML – Fundamentals Tables rowspan and colspan
  • 41. HTML – Fundamentals <TABLE BORDER=1 WIDTH=&quot;50%&quot; CELLPADDING=5 ALIGN=&quot;center&quot;> <TR> <TD colspan=2 align='center'> <font color=&quot;red&quot;><b>Student Grades</b></font> </TD> </TR> <TR> <TD><b>Student</b></TD> <TD><b>Grade</b></TD> </TR> <TR> <TD>Tom</TD> <TD rowspan=2 >A</TD> </TR> <TR> <TD>Sue</TD> </TR> </TABLE>
  • 42. HTML – Fundamentals Student Grades Student Grade Tom A Sue
  • 43. Screen Compatibility 1280 x 1024 1024 x 768 800 x 600 640 x 480
  • 44. HTML – Fundamentals Tables Tables are frequently used to layout the basic web page design . 640 1280
  • 45. HTML – Fundamentals Images <img src=“images/pic1.jpg” width=75px, height=50px />
  • 46. HTML – Fundamentals Using Images Images take longer to download than text The larger the image, the slower the page Optimize images Use thumbnail images
  • 47. HTML – Fundamentals Other uses of Images Page background (not recommended) <body background-image = “url” > <body class=“background”> body.background { background-image:$url; } Table background <table background-image=“url”> <table class=“background”> table.background { backlground-image:url; }
  • 48. Content Management Systems Joomla Wordpress Drupal PHPNuke PHP-Fusion Copyright 2005 - The Small Business Depot
  • 49. Resources http://www.w3schools.com/ HTML Tutorials Learn HTML Learn XHTML Learn CSS Learn TCP/IP Browser Scripting Learn JavaScript Learn DHTML Learn VBScript Learn HTML DOM Learn WMLScript Server Scripting Learn SQL Learn ASP Learn ADO Learn PHP XML Tutorials Learn XML Learn XSL Learn XSLT Learn XSL-FO Learn XPath Learn XQuery Learn XLink Learn XPointer Learn DTD Learn Schema Learn XML DOM Learn XForms Learn SOAP Learn WSDL Learn RDF Learn RSS Learn WAP . NET (dotnet) .NET Microsoft .NET ASP .NET Mobile Multimedia Learn Media Learn SMIL Learn SVG Learn Flash Web Building Web Building Web W3C Web Browsers Web Quality Web Semantic Web Careers Web Hosting Web Certification