Chapter 21 Overview Part 1
Chapter 21 Overview Part 1
Web Authoring
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Web Development Layers
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
HTML (Hyper Text Markup Language) – Content Layer
Tip: If you have been giving the task of creating a CSS then make sure you use the CSS Window.
1) Create New CSS and then Save
2) Open the CSS Window – using this will eliminate mistakes Tip: Write all colours in 6
hexadecimal digits e.g.
Chapter 21: Web Authoring
3) Select Tag and then write the name of the tag (H1, H2 etc.)
4) Select the properties for Tag (Size, colour etc.) #000000
1 2 3 4
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Body Tag Body Tag: Is used to set properties for the webpage
background. You can either browse and select an
image for the background or choose a colour. The
background repeat option will allow you to choose
how the background image will be laid out.
Chapter 21: Web Authoring
# FF 00 00 Full Red
# C0 00 00 ¾ ON (75%) Red
# 80 00 00 ½ On (50%) Red
# 40 00 00 ¼ on (25%) (Darker Shade)
# 00 00 00 OFF (Black)
Make sure all colour settings are in 6 digits Hexadecimal e.g. #000000
#000060 – (60 has been used in previous mark schemes when requested to set a
colour as a dark shade)
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Correcting CSS for Text Styles
Stylesheet1
• Font: Arial, Helvetica or
default sans-serif font
• Font Size: 24px
• Italic, Bold, Red
• Center Aligned.
Correct CSS
Corrected Mistakes
#8B0000
Chapter 21: Web Authoring
#191970
If you are editing the
CSS then put the
brackets {Start & End }
#000080 in the correct place for
each tag.
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Attaching Style Sheet
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Applying CSS Text Styles
CSS text styles for heading, paragraphs and list styles can be applied to text in a HTML webpage
(in the content layer). The properties panel at the bottom of the page can be used to apply
particular text styles. You can also use the code view to apply styles.
Chapter 21: Web Authoring
Code View: Remember to open <h1> and close </h1> the tags
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
CSS for Tables
Tip: If you have set internal borders for a table then create the additional TD Tag.
TD: Internal Border
• Solid, 2 Px, Navy Blue (80)
Creating Tables
1) Insert >> Table
2) Work out the number
Chapter 21: Web Authoring
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Creating a Table
TR Table Row
Chapter 21: Web Authoring
TD Table Data
Tip:
Tables are used to structure (layout) the content on a webpage. Table HTML Tags:
HTML tags are used to format the table. The table header (Thead), Table:v
footer (Tfoot) and body (Tfoot) needs to be inserted in this order. TD: Table Data
THEAD & TH: Header
Tfoot: Footer
Tbody: Body
Chapter 21: Web Authoring
Table Body
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Creating Table Style Sheet
Chapter 21: Web Authoring
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Table HTML Tags and Embedded CSS
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Use of Embedded CSS in HTML
Nov 2015
Chapter 21: Web Authoring
WWW.YAHMAD.CO.UK
ICT IGCSE Practical – Revision Presentation
Web Authoring
Table Alignment
The properties panel can be used to align content (V or H) in a Table Cell (TD).
Chapter 21: Web Authoring
HTML Tag
WWW.YAHMAD.CO.UK