SlideShare una empresa de Scribd logo
1 de 13
Intro to HTML
Paragraph Mark-up
I’ve started so I must finish! <P> <STRONG> Write Your Text Here </STRONG> </P>
Headings We use different heading styles to break-up page content Increased number  =  Smaller heading
Tables Tables can be used to arrange content in a more organised or attractive way
Tables <table class="plain"> <tbody> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
Tables <table class="plain"> <tbody> <tr> Row <td> </td> ABC Cell <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
Tables – Merging Cells <table class="plain"> <tbody> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td colspan=“2”> <td> </td> Number of Cells needs to be equal Delete Replace Cell </tr> <tr> colspan <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td rowspan=“2”> <td> </td> <td> </td> </tr> <tr> rowspan Delete Replace Cell <td> </td> <td> </td> </tr> </tbody> </table>
Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td rowspan=“2”> <td> </td> <td> </td> </tr> <tr> colspan rowspan <td> </td> <td> </td> </tr> Text Text </tbody> </table>
Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td colspan=“2”> <td> </td> </tr> <tr> colspan rowspan <td> </td> <td> </td> Title across all the row <td> </td> </tr> Text Text Text </tbody> </table>
Strange HTML &nbsp <table class="plain"> <tbody> <tr> <td> </td> &nbspText <td> </td> Text <td> </td> </tr> <tr> Text <td> </td> Text <td> </td> <td> </td> </tr> </tbody> </table>

Más contenido relacionado

Más de Career Development Service, University of Leicester

Más de Career Development Service, University of Leicester (20)

Employability Summit 4: 17th December 2013 - Richard Wilcock "Employability P...
Employability Summit 4: 17th December 2013 - Richard Wilcock "Employability P...Employability Summit 4: 17th December 2013 - Richard Wilcock "Employability P...
Employability Summit 4: 17th December 2013 - Richard Wilcock "Employability P...
 
Employability Summit 4: 17th December 2013 - James McShea "Where Will You Lead?"
Employability Summit 4: 17th December 2013 - James McShea "Where Will You Lead?"Employability Summit 4: 17th December 2013 - James McShea "Where Will You Lead?"
Employability Summit 4: 17th December 2013 - James McShea "Where Will You Lead?"
 
Employability Summit 4: 17th December 2013 - James McShea (Civil Service Fast...
Employability Summit 4: 17th December 2013 - James McShea (Civil Service Fast...Employability Summit 4: 17th December 2013 - James McShea (Civil Service Fast...
Employability Summit 4: 17th December 2013 - James McShea (Civil Service Fast...
 
Employability Summit 4: 17th December 2013 - Stephen Isherwood "Graduate Labo...
Employability Summit 4: 17th December 2013 - Stephen Isherwood "Graduate Labo...Employability Summit 4: 17th December 2013 - Stephen Isherwood "Graduate Labo...
Employability Summit 4: 17th December 2013 - Stephen Isherwood "Graduate Labo...
 
Example Single Page CV
Example Single Page CVExample Single Page CV
Example Single Page CV
 
Example Chronological CV
Example Chronological CVExample Chronological CV
Example Chronological CV
 
Example Skill Based CV
Example Skill Based CVExample Skill Based CV
Example Skill Based CV
 
Finding an industrial placement 2012
Finding an industrial placement 2012 Finding an industrial placement 2012
Finding an industrial placement 2012
 
Using social media to assist your applications
Using social media to assist your applicationsUsing social media to assist your applications
Using social media to assist your applications
 
Personal branding for School of Management
Personal branding for School of ManagementPersonal branding for School of Management
Personal branding for School of Management
 
Example Covering letter - HR
Example Covering letter - HRExample Covering letter - HR
Example Covering letter - HR
 
Example Covering letter - Accountancy
Example Covering letter - AccountancyExample Covering letter - Accountancy
Example Covering letter - Accountancy
 
Example academic CV
Example academic CVExample academic CV
Example academic CV
 
Example skills based CV
Example skills based CVExample skills based CV
Example skills based CV
 
Example part-time CV
Example part-time CVExample part-time CV
Example part-time CV
 
Example chronological CV
Example chronological CVExample chronological CV
Example chronological CV
 
Employability Matters Like Nevwer Before - Carl Gilleard
Employability Matters Like Nevwer Before - Carl GilleardEmployability Matters Like Nevwer Before - Carl Gilleard
Employability Matters Like Nevwer Before - Carl Gilleard
 
University of leicester employability
University of leicester   employabilityUniversity of leicester   employability
University of leicester employability
 
Example academic CV
Example academic CVExample academic CV
Example academic CV
 
Food@Uni
Food@UniFood@Uni
Food@Uni
 

Intro to HTML

  • 3. I’ve started so I must finish! <P> <STRONG> Write Your Text Here </STRONG> </P>
  • 4. Headings We use different heading styles to break-up page content Increased number = Smaller heading
  • 5. Tables Tables can be used to arrange content in a more organised or attractive way
  • 6. Tables <table class="plain"> <tbody> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
  • 7. Tables <table class="plain"> <tbody> <tr> Row <td> </td> ABC Cell <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
  • 8. Tables – Merging Cells <table class="plain"> <tbody> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
  • 9. Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td colspan=“2”> <td> </td> Number of Cells needs to be equal Delete Replace Cell </tr> <tr> colspan <td> </td> <td> </td> <td> </td> </tr> </tbody> </table>
  • 10. Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td rowspan=“2”> <td> </td> <td> </td> </tr> <tr> rowspan Delete Replace Cell <td> </td> <td> </td> </tr> </tbody> </table>
  • 11. Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td rowspan=“2”> <td> </td> <td> </td> </tr> <tr> colspan rowspan <td> </td> <td> </td> </tr> Text Text </tbody> </table>
  • 12. Tables – Merging Cells <table class="plain"> <tbody> <tr> </td> <td colspan=“2”> <td> </td> </tr> <tr> colspan rowspan <td> </td> <td> </td> Title across all the row <td> </td> </tr> Text Text Text </tbody> </table>
  • 13. Strange HTML &nbsp <table class="plain"> <tbody> <tr> <td> </td> &nbspText <td> </td> Text <td> </td> </tr> <tr> Text <td> </td> Text <td> </td> <td> </td> </tr> </tbody> </table>

Notas del editor

  1. Page 13H4 is the same size as standard font