Xhtml

  • Uploaded by: api-26084493
  • 0
  • 0
  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Xhtml as PDF for free.

More details

  • Words: 1,562
  • Pages: 47
Professional Web Authoring  With XHTML and CSS Roy Tennant

California Digital Library

escholarship.cdlib.org/rtennant/presentations/2003il

Outline What You’re In For Why XHTML & CSS? XHTML CSS Making the Transition The Future

What You’re In For A lecture on ditching bad habits: Unclosed tags: 

Formatting tags:  Browser extensions: 



An introduction to the most essential  elements of XHTML and CSS

Why XHTML & CSS? Garbage code is…uh…garbage! Information encoded in XHTML can be more  easily migrated as technology changes XHTML is a good step forward to learning  XML You can easily make global changes to how  your documents display (demo) There are user benefits to separating  information from presentation (demo)

Information

Presentation

XHTML Doc

Cascading Style Sheet

Web Server

Information

Presentation

XHTML Doc

Cascading Style Sheet

Web Server

User-defined Cascading Style Sheet

Information XML Doc

Transformatio n XSLT

Web Server

Presentation XHTML & CSS

XHTML If you know HTML, you know more than  you think XHTML is aimed to replace HTML XHTML is XML­compliant HTML It comes in three “flavors”: Transitional Strict Frameset

XHTML: Transitional Easier learning curve, less strict Some formatting tags such as 
  and  are allowed, but in  Transitional, but not in Strict

XHTML: Strict NO formatting codes or attributes are  allowed — display is completely  handled by CSS XHTML Strict is compliant XML

XHTML: The Basic Rules All tags must be in lowercase:

All tags must end:



Even empty tags:



 = 

All tags must properly nest:

This is an anchor.



All attribute values must be quoted:


XHTML: More Rules

Attribute minimization is forbidden:

  becomes…

You must use a document type declaration: Transitional: 



Strict:



And add a namespace declaration to :

The Most Important Tags Structure & Meta Information Miscellaneous Tables Forms Lists Style­Related Tags

Structure & Meta Information  = document type definition (DTD)  = defines an XHTML doc  = defines doc header  = doc title <meta> = metadata  = defines doc body

 = doc headers

 = doc paragraphs
 = quoted text  = comment

Miscellaneous  = an anchor/link  = an image <map> = an image map <area> = an image map area  = line break  = horizontal rule <em> = emphasis <strong> = strong emphasis <sup> = superscript <sub> = subscripted text <pre> = preformatted text

Tables
 = defines a table  = table row  = table header  = table cell  = table caption

Forms
 = defines a form  = form input  = text block input <select> = scrolling or drop­ down list of options  = select option

Lists
     = defines a bulleted list
       = defines a numbered list
    1.  = list item
       = defines a definition list
       = definition term
       = definition description

      Style­Related Tags  = a resource reference (stylesheet):   <style> = embedded style rules: <style type=“text/css”> h1 { color: red; } 
       = doc subset (block) <span> = doc subset (inline)

      http://validator.w3.org/

      Cascading Style Sheets Specifies how XHTML should be  displayed to the user Replaces tags like:

       — any tag or attribute  setting that specifies how something  should be displayed

      Can either be specified within the HTML  file itself, or as a separate file

      Browser Support for CSS Varies between browsers (MSIE, Netscape,  etc.), platforms (Windows v. Mac), and versions Common points of failure: Font sizes Font names Complicated layouts Don’t bet the farm on support for a particular  style Go easy! A little bit of style goes a long way

      CSS: Rule Structure

      selectordeclaration h1 { color: purple; } property value

      ends every property/ value pair

      h1 { font-family: Optima, Arial, sans-serif; } property/value separator begins and ends the declaration

      CSS Rule Example body {               background: #FFFFFF;   color: black;   margin­left: 5%;   margin­right: 5%;   font­family: Tahoma, Optima, Arial, sans­serif; }

      CSS: Types of Selectors Simple Class Pseudo class Pseudo element Contextual

      CSS Selectors: Simple An HTML tag:

      , etc.

      Example:

      h1 { text­align: center; }

      Grouping Selectors If you have two or more rules that are the  same: h2 { font­family: Optima, Arial, sans­serif; } p { font­family: Optima, Arial, sans­serif; }

      You can group them:

      h2, p { font­family: Optima, Arial, sans­serif; }

      CSS Selectors: Class An HTML element can be assigned a class:

      Which specifies a particular selector in the  style sheet: h1.header { text­align: center; }

      Classes can apply to multiple elements: .header { text­align: center; } will apply to , etc.

      CSS Selectors: Psuedo Class Selectors that are inferred by the  browser, not coded in the XHTML  document a:link — untraveled, inactive link a:hover — mouse on top of a:active — being clicked on a:visited — traveled

      CSS Selectors: Psuedo Element :first­letter — first letter in a block  element like 

       or 

      :first­line— first line in a block element  like 

       or 

      See samples on the next screen

      CSS Selectors: Psuedo Element

      CSS Selectors: Contextual

      Selectors that only match under certain  contexts; for example, the style: h1 em { color: red; } And this XHTML:

      This is header text, and <em>this text is  emphasized but this is not.

       results in this:

      Popular Text Properties text­align: left | center | right | justify font­size: small | medium…| % font­family: fontname, fontname,  familyname font­weight: bold | lighter font­style: italic

      Colors color: red | blue…| hexcode background­color: red | blue…| hexcode Colors you may be able to use by name  instead of hex code: Black  = #000000    Green  = #008000    Silver = #C0C0C0     Lime   = #00FF00    Gray   = #808080    Olive  = #808000     White  = #FFFFFF   Yellow = #FFFF00  Maroon = #800000     Navy   = #000080    Red    = #FF0000    Blue   = #0000FF     Purple = #800080    Teal   = #008080     Fuchsia= #FF00FF     Aqua   = #00FFFF

      Types of Elements “Block” elements are HTML elements that are  displayed on a line by themselves  (paragraphs, headings, lists, tables, divs,  etc.) and can only be enclosed by other block  elements “Inline” elements are HTML elements that do  not force a line break and can be enclosed  within any other element (a, em, span, etc.) “List­item elements” are HTML elements that  have a marker (bullet, number) and an order

      Controlling Element Display This HTML:

      This is header text, and <em>this text is emphasized but this is  not.

       

      If the "display: none" rule works, there will be nothing  displayed after the colon: <em class="disappear">This text should not  display



      And these styles: .disappear { display: none; } Result in:

      h1 { display: inline; } em { display: block; }

      CSS: Inheritance Unless a more specific style rule applies, tags  enclosed by another tag will inherit its style A style rule like this: h1 { color: red; } And HTML like this:

      A Document <em>Title



      Will result in “Title” being both red and italic  (the default display of <em>) But if a rule like this exists: em { color: blue; }  then it will override the style inherited from the 



      CSS: The Cascade Specifying styles in a separate file allows web  managers to specify global settings The display of an unlimited number of web  documents can be changed by changing a  setting in a global style sheet Global settings can be overridden by using  the cascade of precedence Therefore, CSS offers both power and  flexibility in determining how documents are  displayed

      CSS: How the Cascade Works The process:

      Find all declarations that apply to a given  element Sort by specificity (e.g., a simple selector like  h1 = 1; class selector like .highlight = 10) Sort by order of appearance; the later a  declaration appears, the more weight it is  given

      CSS: Diagram of Precedence XHTML File 2) [call to external

      stylesheet] 1)[styles embedded inside the document]

      Generalized order of precedence, all other things being equal

      Extern al Style Sheet

      http://jigsaw.w3.org/css-validator/

      Making the Transition: Learning Do you know HTML code?

      Use XHTML Transitional Validate your docs so you can learn where  you tend to make errors Begin to wean yourself from 
      , etc.

      Is it all new to you?

      Learn and use XHTML Strict Validate your docs until you get the hang of it

      Making the Transition: Tidy HTML Tidy is free software that can read your  HTML and output a much better file by: Automatically fixing some errors Changing uppercase tags to lowercase Indenting your code to make to make it more  readable Quote all attribute values And other things, depends on configuration file

      An error report may also be generated that  can identify remaining problems

      Making the Transition: Migrating an Existing Site All at once:

      Copy entire site to another location Run Tidy; check and re­run as needed Clean up remaining problems Transfer back

      Gradual:

      Do all new things in XHTML/CSS Migrate old files as you update them for other  reasons

      The Future Will XML replace HTML? It already has! That’s why you’re here! XML will typically not be delivered to web  clients; that is what XHTML will be for So, is this the last markup you have to learn? No way! Use this as a stepping­stone to XML,  for which you will have many additional uses Remember — Never stop learning!


      Related Documents

      Xhtml
      June 2020 7
      Xhtml
      June 2020 31
      Xhtml
      November 2019 22
      Xhtml
      November 2019 20
      Xhtml Tutorial
      April 2020 4
      Xhtml Basics
      August 2019 80