SlideShare a Scribd company logo
1 of 26
STATIC WEB SITES ASSIGNMENT 1
Philip Lemmon
WHY AND WHAT AM HAVE I CREATED!?
   I am creating a slide show presentation for my static website
    assignment.
   I have decided to use html5 to code in because it:
   - Makes sites more accessible
   - Has video and audio support
   - Works with mobile browsers
   - Clean and easy to read code
   - Works on all popular browsers
   - Has a simple DTD which goes at the start of the code.
THIS IS THE BASIC STRUCTURE OF MY HTML5 DOCUMENT.
YOU CAN SEE I HAVE USED THE BASIC ELEMENTS OF HTML5 AND
COMMENTED MY CODE SO IT IS EASIER TO READ.
BUT AS YOU CAN SEE, MY PAGE STILL HAS NO STYLE.
TABLE
 The element I have chosen to focus on is a table.
  A table is used so that data can be well defined and
  seen clearly.
 The type of table I have decided to include in my
  website is a grid table.
HOW TO CODE A GRID TABLE
To code a grid table is very simple as you can see below (anything after
   “<-- ” is a comment:
<table class="gridtable"> <-- Defines the table class -->
           <tr> -- defines table row

         <th>Strength</th><th>Agility</th><th>Intelligence</th> <--
   <th> and </th> start and end table header cells -->
         </tr> <-- ends table row -->
         <tr>
                   <td>Sven</td><td>Sniper</td><td>Zues</td> <--
   <td> and </td> start and end basic table cells -->
         </tr>
         <tr>
                   <td>Pudge</td><td>Viper</td><td>Pugna</td>
         </tr>
</table> <-- Ends table -->
WITHOUT COMMENTS IT LOOKS LIKE THIS
<table class="gridtable">
        <tr>

        <th>Strength</th><th>Agility</th><th>Intelligence</th>
        </tr>
        <tr>
                <td>Sven</td><td>Sniper</td><td>Zues</td>
        </tr>
        <tr>
                <td>Pudge</td><td>Viper</td><td>Pugna</td>
        </tr>
</table>
WHAT WEB BROWSERS DOES IT WORK
WITH? FIREFOX
WHAT WEB BROWSERS DOES IT WORK
WITH?
GOOGLE CHROME
WHAT WEB BROWSERS DOES IT WORK
WITH?
OPERA
WHAT WEB BROWSERS DOES IT WORK
WITH?
INTERNET EXPLORER
CODE WORKS AS EXPECTED
As you can see the code for the website works as
  expected.
The table has no outlines/cells that you can see
  visibly yet because I have not yet added the style
  sheet.
GRID TABLE CSS
I have decided to make to style the table within the
   CSS. Without the CSS the table does not have
   visible cells or header cells dividing the information.
   When the CSS sheet is complete, I will be able to
   change the colour, size and border of the cells. I
   will also be able to change the font, colour and size
   of the text that I use.
GRID TABLE CSS
table.gridtable {
    font-family: Impact, Charcoal, sans-serif;
    font-size:20px;
    color:#336666;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}
table.gridtable th {
     border-width: 1px;
     padding: 8px;
    border-style: solid;
    border-color: #666666;
    background-color: #dedede;
}
table.gridtable td {
     border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #666666;
    background-color: #ffffff;
}
GRID TABLE CSS WITH BREAK-DOWN
WHAT TABLE NOW LOOKS LIKE WITH CSS




The colours are still a bit boring, so I will alter my
  CSS to change it to something a bit more exciting.
CHANGE TO CSS
NEW COLOURS IN CSS TABLE
BORDERS AND WIDTH




  Now the colours look good, I will now demonstrate how to alter the
  size of the table using the CSS code.
The code is altered to make the space around the text larger and
the border thicker.
I gave the header cells more space so they stood out a bit more.
TABLE WITH ALTERED BORDERS
DOES MY CSS WORK WITH OTHER WEB
BROWSERS?
I also wrote CSS for the rest of my web page to tidy
   up the styling.
WHAT WEB BROWSERS DOES IT WORK
WITH? FIREFOX
WHAT WEB BROWSERS DOES IT WORK
WITH? CHROME
WHAT WEB BROWSERS DOES IT WORK
WITH? OPERA
WHAT WEB BROWSERS DOES IT WORK
WITH? INTERNET EXPLORER

More Related Content

What's hot

HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
TonyC445
 
15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color
In a Rocket
 
Sensational css how to show off your super sweet
Sensational css  how to show off your super sweet Sensational css  how to show off your super sweet
Sensational css how to show off your super sweet
karenalma
 
Artdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group ProjectsArtdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group Projects
guestca5654
 
C S S Top Elements
C S S  Top  ElementsC S S  Top  Elements
C S S Top Elements
ehorner
 
682hi Fi Animated
682hi Fi Animated682hi Fi Animated
682hi Fi Animated
triff
 
EPUB Boot Camp: Tips and Tweaks
EPUB Boot Camp: Tips and TweaksEPUB Boot Camp: Tips and Tweaks
EPUB Boot Camp: Tips and Tweaks
BookNet Canada
 

What's hot (20)

HTML Lesson 2
HTML Lesson 2HTML Lesson 2
HTML Lesson 2
 
Wireframe Template
Wireframe TemplateWireframe Template
Wireframe Template
 
Designing Firefox Themes
Designing Firefox ThemesDesigning Firefox Themes
Designing Firefox Themes
 
Getting to Grips with Firebug
Getting to Grips with FirebugGetting to Grips with Firebug
Getting to Grips with Firebug
 
Adding Space
Adding SpaceAdding Space
Adding Space
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
 
Informações
InformaçõesInformações
Informações
 
15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color15- Learn CSS Fundamentals / Color
15- Learn CSS Fundamentals / Color
 
HTML Lesson 5
HTML Lesson 5HTML Lesson 5
HTML Lesson 5
 
There's a shortcut for that! SSMS Tips and Tricks (Denver SQL)
There's a shortcut for that! SSMS Tips and Tricks (Denver SQL)There's a shortcut for that! SSMS Tips and Tricks (Denver SQL)
There's a shortcut for that! SSMS Tips and Tricks (Denver SQL)
 
Sensational css how to show off your super sweet
Sensational css  how to show off your super sweet Sensational css  how to show off your super sweet
Sensational css how to show off your super sweet
 
Artdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group ProjectsArtdm171 Week3 Tags Group Projects
Artdm171 Week3 Tags Group Projects
 
Down and dirty with hreflang - Smx munich 2014 - david sottimano
Down and dirty with hreflang - Smx munich 2014 - david sottimanoDown and dirty with hreflang - Smx munich 2014 - david sottimano
Down and dirty with hreflang - Smx munich 2014 - david sottimano
 
C S S Top Elements
C S S  Top  ElementsC S S  Top  Elements
C S S Top Elements
 
web development basics tables part2
web development basics tables part2web development basics tables part2
web development basics tables part2
 
Iwt assignment 1
Iwt  assignment 1Iwt  assignment 1
Iwt assignment 1
 
Html 101
Html 101Html 101
Html 101
 
682hi Fi Animated
682hi Fi Animated682hi Fi Animated
682hi Fi Animated
 
EPUB Boot Camp: Tips and Tweaks
EPUB Boot Camp: Tips and TweaksEPUB Boot Camp: Tips and Tweaks
EPUB Boot Camp: Tips and Tweaks
 
Html ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangaloreHtml ppt by Fathima faculty Hasanath college for women bangalore
Html ppt by Fathima faculty Hasanath college for women bangalore
 

Viewers also liked

European Network of Ombudspersons Take Action. Safety and fundamental rights ...
European Network of Ombudspersons Take Action. Safety and fundamental rights ...European Network of Ombudspersons Take Action. Safety and fundamental rights ...
European Network of Ombudspersons Take Action. Safety and fundamental rights ...
Philip Ishola
 
What is the secret to being a great kisser
What is the secret to being a great kisserWhat is the secret to being a great kisser
What is the secret to being a great kisser
Ask Expert
 
Creating outcomes and assessment measures -jarvis christian college
Creating outcomes and assessment measures -jarvis christian collegeCreating outcomes and assessment measures -jarvis christian college
Creating outcomes and assessment measures -jarvis christian college
Cleopatra Allen
 
интернет в социологии важнейшие информационные сайты
интернет в социологии   важнейшие информационные сайтыинтернет в социологии   важнейшие информационные сайты
интернет в социологии важнейшие информационные сайты
Daria Dmitrieva
 
Bangwe bca projects
Bangwe bca projectsBangwe bca projects
Bangwe bca projects
kmukhuna
 
A critical analysis of public financial management reform in ethiopia and tan...
A critical analysis of public financial management reform in ethiopia and tan...A critical analysis of public financial management reform in ethiopia and tan...
A critical analysis of public financial management reform in ethiopia and tan...
Alexander Decker
 

Viewers also liked (20)

Getting Great Starts: Vegetable Production
Getting Great Starts: Vegetable ProductionGetting Great Starts: Vegetable Production
Getting Great Starts: Vegetable Production
 
руны
руныруны
руны
 
Celebrate Navratri with Trendybharat's exclusive festive offer
Celebrate Navratri with Trendybharat's exclusive festive offerCelebrate Navratri with Trendybharat's exclusive festive offer
Celebrate Navratri with Trendybharat's exclusive festive offer
 
Skymind's Platform - CN
Skymind's Platform - CNSkymind's Platform - CN
Skymind's Platform - CN
 
Silec Popy C33-226 MV Cables (12kV 20kV 24kV)
Silec Popy C33-226 MV Cables (12kV 20kV 24kV)Silec Popy C33-226 MV Cables (12kV 20kV 24kV)
Silec Popy C33-226 MV Cables (12kV 20kV 24kV)
 
European Network of Ombudspersons Take Action. Safety and fundamental rights ...
European Network of Ombudspersons Take Action. Safety and fundamental rights ...European Network of Ombudspersons Take Action. Safety and fundamental rights ...
European Network of Ombudspersons Take Action. Safety and fundamental rights ...
 
What is the secret to being a great kisser
What is the secret to being a great kisserWhat is the secret to being a great kisser
What is the secret to being a great kisser
 
Creating outcomes and assessment measures -jarvis christian college
Creating outcomes and assessment measures -jarvis christian collegeCreating outcomes and assessment measures -jarvis christian college
Creating outcomes and assessment measures -jarvis christian college
 
kevin valero
kevin valerokevin valero
kevin valero
 
Achieving goals through collaboration
Achieving goals through collaborationAchieving goals through collaboration
Achieving goals through collaboration
 
La aplicación de las redes sociales en la educación
La aplicación de las redes sociales en la educaciónLa aplicación de las redes sociales en la educación
La aplicación de las redes sociales en la educación
 
интернет в социологии важнейшие информационные сайты
интернет в социологии   важнейшие информационные сайтыинтернет в социологии   важнейшие информационные сайты
интернет в социологии важнейшие информационные сайты
 
La profesion docente_ante_los_desafios_del_presente_y_del_futuro_imbernon_f
La profesion docente_ante_los_desafios_del_presente_y_del_futuro_imbernon_fLa profesion docente_ante_los_desafios_del_presente_y_del_futuro_imbernon_f
La profesion docente_ante_los_desafios_del_presente_y_del_futuro_imbernon_f
 
Bangwe bca projects
Bangwe bca projectsBangwe bca projects
Bangwe bca projects
 
A critical analysis of public financial management reform in ethiopia and tan...
A critical analysis of public financial management reform in ethiopia and tan...A critical analysis of public financial management reform in ethiopia and tan...
A critical analysis of public financial management reform in ethiopia and tan...
 
Crafting A Mission Statement
Crafting A Mission StatementCrafting A Mission Statement
Crafting A Mission Statement
 
Reviewing the Organization's Mission Statement
Reviewing the Organization's Mission StatementReviewing the Organization's Mission Statement
Reviewing the Organization's Mission Statement
 
Skymind 深度学习 - T11 Summit
Skymind 深度学习 - T11 SummitSkymind 深度学习 - T11 Summit
Skymind 深度学习 - T11 Summit
 
Roxtec : Jackup
Roxtec : JackupRoxtec : Jackup
Roxtec : Jackup
 
The Art and Craft of Resilience - Speech 27.11.15
The Art and Craft of Resilience - Speech 27.11.15The Art and Craft of Resilience - Speech 27.11.15
The Art and Craft of Resilience - Speech 27.11.15
 

Similar to Static web sites assignment 1 philip lemmon1

Create Web Pages by programming of your chice.pdf
Create Web Pages by programming of your chice.pdfCreate Web Pages by programming of your chice.pdf
Create Web Pages by programming of your chice.pdf
workingdev2003
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
Afaq Siddiqui
 

Similar to Static web sites assignment 1 philip lemmon1 (20)

HTML Tables in Omeka
HTML Tables in OmekaHTML Tables in Omeka
HTML Tables in Omeka
 
Web Design Assignment 1
Web Design Assignment 1 Web Design Assignment 1
Web Design Assignment 1
 
CSUN 2020: CSS Display Properties Versus HTML Semantics
CSUN 2020: CSS Display Properties Versus HTML SemanticsCSUN 2020: CSS Display Properties Versus HTML Semantics
CSUN 2020: CSS Display Properties Versus HTML Semantics
 
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
Embrace the Mullet: CSS is the 'Party in the Back' (a CSS How-to)
 
Session on common html table
Session on common html tableSession on common html table
Session on common html table
 
Create Web Pages by programming of your chice.pdf
Create Web Pages by programming of your chice.pdfCreate Web Pages by programming of your chice.pdf
Create Web Pages by programming of your chice.pdf
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
 
WCBuf: CSS Display Properties versus HTML Semantics
WCBuf: CSS Display Properties versus HTML SemanticsWCBuf: CSS Display Properties versus HTML Semantics
WCBuf: CSS Display Properties versus HTML Semantics
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS
 
Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)Html_Day_Three(W3Schools)
Html_Day_Three(W3Schools)
 
Html and css
Html and cssHtml and css
Html and css
 
Flipping Tables: Displaying Data on Small Screens
Flipping Tables: Displaying Data on Small ScreensFlipping Tables: Displaying Data on Small Screens
Flipping Tables: Displaying Data on Small Screens
 
CSS3 Ready for Primetime
CSS3 Ready for PrimetimeCSS3 Ready for Primetime
CSS3 Ready for Primetime
 
29042023.pptx
29042023.pptx29042023.pptx
29042023.pptx
 
Introduction to Bootstrap: Design for Developers
Introduction to Bootstrap: Design for DevelopersIntroduction to Bootstrap: Design for Developers
Introduction to Bootstrap: Design for Developers
 
Srijan presentation on CSS
Srijan presentation on CSSSrijan presentation on CSS
Srijan presentation on CSS
 
IP - Lecture 6, 7 Chapter-3 (3).ppt
IP - Lecture 6, 7 Chapter-3 (3).pptIP - Lecture 6, 7 Chapter-3 (3).ppt
IP - Lecture 6, 7 Chapter-3 (3).ppt
 
Web I - 03 - Tables
Web I - 03 - TablesWeb I - 03 - Tables
Web I - 03 - Tables
 
Web-03-CSS.ppt
Web-03-CSS.pptWeb-03-CSS.ppt
Web-03-CSS.ppt
 

Recently uploaded

KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
Cara Menggugurkan Kandungan 087776558899
 
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
brynpueblos04
 
February 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterFebruary 2024 Recommendations for newsletter
February 2024 Recommendations for newsletter
ssuserdfec6a
 

Recently uploaded (15)

Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsDadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
 
Exploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdf
Exploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdfExploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdf
Exploring Stoic Philosophy From Ancient Wisdom to Modern Relevance.pdf
 
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7Girls in Mahipalpur  (delhi) call me [🔝9953056974🔝] escort service 24X7
Girls in Mahipalpur (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
 
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptxSIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theory
 
Emotional Freedom Technique Tapping Points Diagram.pdf
Emotional Freedom Technique Tapping Points Diagram.pdfEmotional Freedom Technique Tapping Points Diagram.pdf
Emotional Freedom Technique Tapping Points Diagram.pdf
 
February 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterFebruary 2024 Recommendations for newsletter
February 2024 Recommendations for newsletter
 
Social Learning Theory presentation.pptx
Social Learning Theory presentation.pptxSocial Learning Theory presentation.pptx
Social Learning Theory presentation.pptx
 
Goregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Goregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsGoregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Goregaon West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 
Colaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Colaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsColaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Colaba Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 
2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga
 
March 2023 Recommendations for newsletter
March 2023 Recommendations for newsletterMarch 2023 Recommendations for newsletter
March 2023 Recommendations for newsletter
 

Static web sites assignment 1 philip lemmon1

  • 1. STATIC WEB SITES ASSIGNMENT 1 Philip Lemmon
  • 2. WHY AND WHAT AM HAVE I CREATED!?  I am creating a slide show presentation for my static website assignment.  I have decided to use html5 to code in because it:  - Makes sites more accessible  - Has video and audio support  - Works with mobile browsers  - Clean and easy to read code  - Works on all popular browsers  - Has a simple DTD which goes at the start of the code.
  • 3. THIS IS THE BASIC STRUCTURE OF MY HTML5 DOCUMENT. YOU CAN SEE I HAVE USED THE BASIC ELEMENTS OF HTML5 AND COMMENTED MY CODE SO IT IS EASIER TO READ.
  • 4. BUT AS YOU CAN SEE, MY PAGE STILL HAS NO STYLE.
  • 5. TABLE  The element I have chosen to focus on is a table. A table is used so that data can be well defined and seen clearly.  The type of table I have decided to include in my website is a grid table.
  • 6. HOW TO CODE A GRID TABLE To code a grid table is very simple as you can see below (anything after “<-- ” is a comment: <table class="gridtable"> <-- Defines the table class --> <tr> -- defines table row <th>Strength</th><th>Agility</th><th>Intelligence</th> <-- <th> and </th> start and end table header cells --> </tr> <-- ends table row --> <tr> <td>Sven</td><td>Sniper</td><td>Zues</td> <-- <td> and </td> start and end basic table cells --> </tr> <tr> <td>Pudge</td><td>Viper</td><td>Pugna</td> </tr> </table> <-- Ends table -->
  • 7. WITHOUT COMMENTS IT LOOKS LIKE THIS <table class="gridtable"> <tr> <th>Strength</th><th>Agility</th><th>Intelligence</th> </tr> <tr> <td>Sven</td><td>Sniper</td><td>Zues</td> </tr> <tr> <td>Pudge</td><td>Viper</td><td>Pugna</td> </tr> </table>
  • 8. WHAT WEB BROWSERS DOES IT WORK WITH? FIREFOX
  • 9. WHAT WEB BROWSERS DOES IT WORK WITH? GOOGLE CHROME
  • 10. WHAT WEB BROWSERS DOES IT WORK WITH? OPERA
  • 11. WHAT WEB BROWSERS DOES IT WORK WITH? INTERNET EXPLORER
  • 12. CODE WORKS AS EXPECTED As you can see the code for the website works as expected. The table has no outlines/cells that you can see visibly yet because I have not yet added the style sheet.
  • 13. GRID TABLE CSS I have decided to make to style the table within the CSS. Without the CSS the table does not have visible cells or header cells dividing the information. When the CSS sheet is complete, I will be able to change the colour, size and border of the cells. I will also be able to change the font, colour and size of the text that I use.
  • 14. GRID TABLE CSS table.gridtable { font-family: Impact, Charcoal, sans-serif; font-size:20px; color:#336666; border-width: 1px; border-color: #666666; border-collapse: collapse; } table.gridtable th { border-width: 1px; padding: 8px; border-style: solid; border-color: #666666; background-color: #dedede; } table.gridtable td { border-width: 1px; padding: 8px; border-style: solid; border-color: #666666; background-color: #ffffff; }
  • 15. GRID TABLE CSS WITH BREAK-DOWN
  • 16. WHAT TABLE NOW LOOKS LIKE WITH CSS The colours are still a bit boring, so I will alter my CSS to change it to something a bit more exciting.
  • 18. NEW COLOURS IN CSS TABLE
  • 19. BORDERS AND WIDTH Now the colours look good, I will now demonstrate how to alter the size of the table using the CSS code.
  • 20. The code is altered to make the space around the text larger and the border thicker. I gave the header cells more space so they stood out a bit more.
  • 22. DOES MY CSS WORK WITH OTHER WEB BROWSERS? I also wrote CSS for the rest of my web page to tidy up the styling.
  • 23. WHAT WEB BROWSERS DOES IT WORK WITH? FIREFOX
  • 24. WHAT WEB BROWSERS DOES IT WORK WITH? CHROME
  • 25. WHAT WEB BROWSERS DOES IT WORK WITH? OPERA
  • 26. WHAT WEB BROWSERS DOES IT WORK WITH? INTERNET EXPLORER