HIGHER. Computing Science. Web Design & Development Implementation Tasks. Ver 8.9

Size: px
Start display at page:

Download "HIGHER. Computing Science. Web Design & Development Implementation Tasks. Ver 8.9"

Transcription

1 HIGHER Computing Science MADRAS COLLEGE St. Andrews Web Design & Development Ver 8.9

2 Contents Introduction What s included in this Booklet? 2 Page Web 1 Setting up the Pages for the Student Cooking Website 3 2 Setting up Colours on the Student Cooking Website 7 3 Floating Images on the Student Cooking Website 8 4 Setting up Spacing on the Student Cooking Website 10 5 Sizing Elements on the Student Cooking Website 11 6 Styling the Navigation Bar of the Student Cooking Website 12 7 Creating a Survey Questionnaire for the Student Cooking Website 13 8 Interactive Image Sizes on the Student Cooking Website 14 9 Creating JavaScript Functions to Interactively Change Image Properties Creating Roll-Over Images on the Student Cooking Website Interactive Hidden Content on the Student Cooking Website Creating a Completely Interactive Page on the Student Cooking Website Completing the Student Cooking Website 20 1

3 Introduction What s Included in this Booklet? This task booklet has been created to cover the web design and development implementation section of the Scottish Higher Computing Science course. As you complete the tasks in this booklet you will use the following HTML, CSS and JavaScript to code a complete, interactive website: HTML (page structure) HTML (forms) CSS (appearance & position) CSS (navigation bar) Javascript (mouse events) <header> <nav> <main> <section> <footer> <form> id attribute input - text, number, textarea, radio, submit, select validation - length, presence, range display (block, inline, none) float (left, right) clear (both) margins padding size (height, width) list-style-type:none hover functions onmouseover onmouseout onclick It is assumed when you work through the tasks that you are already familiar with: HTML CSS <head>, <link>, <title>, <body>, <h1> <h2> <h3>, <p>, <div>, <a> <img>, <audio>, <video> <ul>, <ol>, <li> text: font-family, font-size, color, alignment background color 2

4 Implementation Task 1 Setting up the Pages for the Student Cooking Website Your teacher/lecturer will supply you with a Student Cooking Website folder. This folder contain three sub-folders that in turn contain the following files: An additional folder is supplied containing text for the website. When instructed to you may copy and paste the text into each web page you create rather than typing out long paragraphs. 3

5 The student cooking website has the following structure. Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Pasta Basics Spices Explained Stir-fry Ingredients The wireframe below shows the consistent content that will appear on every page in the website. Home Page Cooking for Students cookingbanner.jpg <header> Home Italian Indian Thai Chinese Survey <nav> <main> Links to famous chef s pages <footer> 4

6 Open the Website Template.html file in a suitable editor. Two popular code editing applications are Notepad++ and Brackets (shown on the right). Professional developers often have favourite code editors selected for: the editing facilities they offer their ability to organise the files they are writing and ease of use. You may use any program you like to edit your web code. The website structure diagram and wireframe should be used to create and save all of the pages in the website. Follow the steps below. Step 1 Edit the template file to create the home page. change the title add the name of the CSS file - cookingstyles add the heading of the website shown on the wireframe add the name of the heading/banner graphic shown on the wireframe add the home page (home.html) and the main sub-pages (shown on the structure diagram and wireframe) to the <ul> element find the website addresses for three famous chefs of your choice and add them as hyperlinks to the footer information. Step 2 Save the home page to the HTML folder as home.html. Step 3 Test the home page in a browser to make sure all the content you added displays correctly. 5

7 Step 4 Now save the file you have created over and over again (once for each page in the website structure diagram) each time changing: the page title the file name (Note - the file names you use when you create the main subpages must match the names you used in the <nav> area of the home page. If you use different names navigation hyperlinks will not work) When you have saved each web page your HTML folder should contain 13 separate files (your file names may differ from the picture on the right). You can delete the original Website Template.html file if you wish. Step 5 Open the home page in a browser and test the navigation. As every page is currently identical you will have to look at the URL to confirm that the correct page is showing. If you find you are missing any pages you should ensure you create them now. In later tasks you will be asked to open up these template pages and add content to them. 6

8 Implementation Task 2 Setting up Colours on the Student Cooking Website Developers often match web page colours to colours that will be found in their website. This may be a graphic, company logo or even a video. The graphic below is the banner image you added to the cooking website. This could be used to select colours. A bold colour palette using the strongest colours A subtle colour palette using quieter shades Navigate to the CSS folder and open the cookingstyles.css file in an appropriate editor. Follow the steps below. Step 1 Using the w3schools.com CSS Colours page or a suitable colour palette website, find four or five colour values that will work with the cooking banner image. Take a note of the colours (names, rgb or hex values) to use later. Step 2 Step 3 Add a few words of text to the <main> element of the cooking home page. The text will be used simply to ensure you can see any colour that you apply to this element and will be changed to the actual page text later. Using grouping selectors where appropriate write CSS declarations to add background colours and text colours to the following elements. <body> <header> <nav> <main> <section> <footer> <h1> <p> Step 4 Test the home page in a browser. If you are not happy with the colours you selected edit the CSS declarations until you are satisfied with the look of your website. 7

9 Implementation Task 3 Floating Images on the Student Cooking Website The wireframe for the cooking website shows that the image in the header element is positioned on the right hand side of the page and the text in the introduction paragraph wraps round the student image. Home Page <h1> Cooking for Students cookingbanner.jpg Home Italian Indian Thai Chinese Survey <img> <img> student.jpg Introduction to student cooking website <p> Links to famous chef s pages Navigate to the student cooking website folder and ensure the cookingstyles.css and home.html files are open in an appropriate editor. Follow the steps below. Step 1 Step 2 Step 3 Step 4 Within the <main> element of the home page add a new paragraph element and the student.jpg image. Copy and paste the supplied text for the home page into the paragraph element. You ll find this is in a file called home page intro.txt. Add CSS declarations to float the h1 heading Cooking for Students and both the cookingbanner and student images. Add additional CSS declaration to ensure that all future content placed with <header>, <nav>, <main> and <footer> elements never overlaps into another of these elements. Test the website in a browser to ensure the images are positioned correctly and that the paragraph of text flows around the student image. Fix any errors. 8

10 Floating Images on the Student Cooking Website (task 3 continued) Positioning objects is often not as simple as applying float to a single image or paragraph. More complex layouts often require container element such as <div> or <section> added to code. Containers are used to surround several other elements for the purpose of styling them as a group. In this way the position of multiple objects can be controlled. The wireframe for the Red and Green Curries page is shown. Red and Green Curries Page cookingbanner.jpg Cooking for Students Home Italian Indian Thai Chinese Survey Thai ingredient 160 x 120 Thai ingredient 160 x 120 Thai ingredient 160 x 120 List of common Thai curry ingredients Instructions to make Thai Green Curry Thai Green.jpg 200 x 150 Instructions to make Thai Red Curry Thai Red.jpg 200 x 150 Links to famous chef s pages Ensure the HTML file you created for the Red and Green Curries page in task 1 and the cookingstyles.css files are both open in an appropriate editor. Beware! This task will require a bit of problem solving and some trial and error to get right. Step 1 Step 2 Step 3 Step 4 Step 5 Within the <main> element of the red and green curries page add the supplied HTML code for the page. You ll find this is in a file called red and green curries.txt. Within the new HTML code you will see that each of the five graphics have already been assigned one of two classes called thaiingredient and thaicurries. Add css declarations to resize the images as shown on the wireframe design. Add container elements (<div> </div>) around the content you wish to group. Add additional CSS declarations to ensure the graphics and text are positioned as shown in the above wireframe design. Test the website in a browser to ensure the images are positioned correctly and that the paragraph of text flows around the student image. Fix any errors. 9

11 Implementation Task 4 Setting up Spacing on the Student Cooking Website Below is an annotated wireframe for the home page of the Student Cooking website. The annotations show the spacing required on the website. 30 pixel space to left of website name 20 pixel space between the right hand edge of the student image and the introduction text Home Page 50 pixel space above website name Cooking for Students cookingbanner.jpg Home Italian Indian Thai Chinese Survey Introduction to student cooking website student.jpg no space around banner image in header 20 pixel space between the bottom edge of the student image and any introduction text that wraps round the bottom of the image 10 pixel space above and to to left of chef links Links to famous chef s pages 10 pixel space above and below main content 10 pixel space around the outside of the introduction paragraph Navigate to the CSS folder and open the cookingstyles.css file in an appropriate editor. Follow the steps below. Step 1 Step 2 Step 3 Look carefully at the wireframe above and decide how you are going to implement the spacing noted on the design. You may wish to make notes. Write CSS declarations to implement the margins and padding you require to create the spaces noted on the wireframe. Test the home page of the cooking website in a browser to ensure your CSS declarations work correctly. Fix any errors. 10

12 Implementation Task 5 Sizing Elements on the Student Cooking Website The home page for the student cooking website is shown below. page width pixels header element height - 90 pixels banner image width pixels height - 90 pixels student image width pixels height pixels footer element height - 90 pixels Navigate to the CSS folder and open the cookingstyles.css file in an appropriate editor. Follow the steps below. Step 1 Step 2 Write CSS declarations to implement widths and heights for the website content that repeats across each page. The sizes are noted above. Test the home page of the cooking website in a browser to ensure your CSS declarations work correctly. Fix any errors. 11

13 Implementation Task 6 Styling the Navigation Bar of the Student Cooking Website The home page for the student cooking website is shown below. The screenshot shows how the page will look when the navigation bar has been styled Ensure the cookingstyles.css file in an appropriate editor and the home.html page is open in a browser to test your coding. There are no steps to follow in this task, just an instruction. Using the Implementation Examples booklet and any other references you have access to, implement a working navigation bar for the student cooking website. Ensure that you consider the following when implementing your CSS declarations: the colour of the navigation bar hyperlink text colour (remember the other links in the footer element of each page) hover colour text size text position height of the navigation bar distance between hyperlinks 12

14 Implementation Task 7 Creating a Survey Questionnaire for the Student Cooking Website The student cooking website has a separate Survey page, the purpose of which is to collect information for future site development. A wireframe design for the form is shown below. Personal Details First Name - text input box - max size 20 characters - not required Surname - text input box - max size 20 characters - not required Age < > 40 Would rather not say Favourite Food Drop down menu to pick favourite country on website (Italian, Indian, Thai, Chinese) - required Drop down menu to pick new country on website (Vietnamese, American, French, Spanish) - required Description of new cooking technique request text input box - max 500 characters - not required Please rate the following from 1= poor to 5 = excellent Ease of website use - range from 1 to 5 - required Quality of Information - range from 1 to 5 - required Taste of Recipes - range from 1 to 5 - required Permission for my information to be held and used for future developments Pernission Yes No Submit Ensure the HTML file you created for the Survey page in task 1 is open in a suitable editor. Within the <main> element, write code to implement the above design. You should ensure that: the form is complete and uses appropriate input types client side validation is implemented as noted on the design the survey headings and inputs are positioned as shown on the design 13

15 Implementation Task 8 Interactive Image Sizes on the Student Cooking Website A wireframe design for the <main> element of the Italian page is shown below. The design shows a heading, a flag graphic, a paragraph of text, two hyperlinks and four Italian graphics. The design has been annotated with some margin sizes. Sub Heading - Italian Cooking Paragraph about pizza and pasta. italyflag.png 75x75 <main> element Links to sub-pages for pizza and pasta margin of 50 pixels above each image italy1.jpg 140 x 140 italy2.jpg 140 x 140 italy3.jpg 140 x 140 italy4.jpg 140 x 140 margin of 40 pixels between each image Ensure the HTML file you created for the Italian page in task 1 and the cookingstyles.css file is open in a suitable editor. Follow the steps below. Step 1 Step 2 Within the <main> element of the italian page add the supplied HTML code for the page. You ll find this is in a file called italy.txt. Within the new HTML code you will see that each of the four italy images have already been assigned a class called italianimages. Add css declarations to the cookingstyles.css file to: size the four italy images add margins as noted on the wireframe design. Step 3 Add onmouseover and onmouseout events to each image. The events should make each image grow by an additional 30 pixels when the mouse passes over them, shrinking back to 140 x 140 when the mouse passes out of the image. Step 4 Test the Italy page of the cooking website in a browser to ensure your CSS declarations, element events and JavaScript code all work correctly. Fix any errors. 14

16 Implementation Task 9 Creating JavaScript Functions to Interactively Change Image Properties Before you start this task ensure that you have successfully completed task 8. In this task you are going to fix the following problem. As each image grows in size (when the mouse passes over them), all the images to the right of the larger one are pushed to the right. If the mouse is moved back and forth across the images it produces an unwanted jerky movement as the images themselves jump left and right. The page would be more userfriendly if one image increased in size without any of the other images moving. Ensure the HTML file you created for the Italian page in task 8 is open in a suitable editor. Before you solve the above problem you should complete the following tasks: Add a <script> element to the <head> of the Italian page. Add two functions to the <script> element. One function to increase the size of the images to 170 x 170 and another function to return the images to 140 x 140. Delete the task 8 JavaScript code from the element events as shown below. Now add two function calls. One to each function you created earlier, within the <script> element. Think about the problem described above. Find and code a solution that will allow each graphic to change size without moving the position of any other graphics. If you require a clue, look carefully at the gaps between the images in screenshot shown to the right. 15

17 Implementation Task 10 Creating Roll-Over Images on the Student Cooking Website A wireframe design for the <main> element of the Stir Fry Ingredients page is shown to the right. prawns.jpg 290x150 soysauce.jpg 290x150 greenbeans.jpg 290x150 List of common stir fry ingredients Stir-fry Meal Combination of ingredients 1 Stir-fry Meal Combination of ingredients 2 Ensure the template HTML file you created for the Stir Fry Ingredients page in task 1 is open in a suitable editor. Follow the steps below. Step 1 Step 2 Within the <main> element of the Stir Fry Ingredients page add the supplied HTML code for the page. You ll find this is in a file called stir fry ingredients.txt. Within the new HTML code you will see that the three ingredient images at the top of the <main> element have already been assigned a class called imagestirfry. Add css declarations to the cookingstyles.css file to resize the three images as noted on the wireframe design. Step 3 The images folder contains the graphic files shown on the right. Three of these files are used as the original three ingredient images. The other three should be used as roll-over images. Add onmouseover and onmouseout events to each image. Add JavaScript code to each event to create interactive roll-over images. Step 4 Test the Stir Fry Ingredients page of the cooking website in a browser to ensure your CSS declarations, element events and JavaScript code all work correctly. Fix any errors. 16

18 Implementation Task 11 Interactive Hidden Content on the Student Cooking Website A wireframe design for the <main> element of the Spices Explained page is shown below. Spices Explained chilipowder.jpg 180x150 cumin.jpg 180x150 cinnamon.jpg 180x150 cloves.jpg 180x pixel margin around the outside of each spice image. fenugreek.jpg 180x150 Spice Name cardamom.jpg 180x150 nutmeg.jpg 180x150 mustardseeds.jpg 180x150 When the mouse passes over each image the text should change to match the image. History of the spice Uses of the spice Repeat eight times, once for each spice. Only one should be visible at any one time. Ensure the template HTML file you created for the Spices Explained page in task 1 is open in a suitable editor. Within the <main> element of the page add the supplied HTML code for the page. You ll find this is in a file called spices explained.txt. Your task is to: Create a class for the images and style them as shown on the design. Ensure that only one of the <section> elements is displayed when the page loads. Create JavaScript functions that will display the matching text when the mouse passes over one of the eight images. Test the page and fix any errors. The completed page should look similar to the one shown above. 17

19 Implementation Task 12 Creating a Completely Interactive Page on the Student Cooking Website A wireframe design for the <main> element of the Pizza Basics page is shown. Left hand side contains images with text labels. Images and labels shown should match the selected instruction. Images and labels should be initially hidden. When and instruction is clicked the images on the left should change to match the instruction. When the mouse moves away from an instruction the images and labels should be hidden again. Heading - How to Make a Pizza pizzaimage.jpg 100x70 image label pizzaimage.jpg 100x70 image label Heading - Making a Pepperoni Pizza Instruction 1 Instruction 2 Instruction 3 Instruction 4 Instruction 5 Instruction 6 Instruction 7 Instruction 8 When an instruction is clicked, the text should turn blue to highlight that it has been selected. Ensure the template HTML file you created for the Pizza Basics page in task 1 is open in a suitable editor. Within the <main> element of the page add the supplied HTML code for the page. You ll find this is in a file called pizza basics.txt. Add the following class and h4 declarations to the cookingstyles.css file:.pizzaimage {width:100px;height:70px;margin-left:10px; margin-top:10px;margin-right:10px} h4 {font-size:12px;margin-bottom:5px;margin-left:10px} Your task is to implement this page. The page should contain the following interaction: When the page loads, show the heading and text instructions but hide all the left hand sections containing the images and their text labels. An example is shown on the next page. When one of the cooking instructions is clicked, the instruction text should be highlighted blue and the matching images for that instruction should be displayed. An example is shown on the next page. When the mouse moves away from the selected instruction the page should reset to the original view (no images showing and all black text with no blue highlights) Ensure you carefully test the page as you complete this task. 18

20 Example screen shots showing the Pizza Basics page when loaded and when an instruction is clicked. Page View After Loading When Instruction 5 is Clicked 19

21 Implementation Task 13 Completing the Student Cooking Website The following highlighted pages of the Student Cooking Website have been completed so far. Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Pasta Basics Spices Explained Stir-fry Ingredients The sub-pages still to be completed are: Indian food Thai food Chinese food The second level pages to be completed are: Pasta Basics Three Curry Recipes Woks Your final task is to: Open each unfinished page in turn. Copy the supplied text into the main section. Code the page according to the supplied annotated wireframe. Test each page. You will find all the necessary wireframe designs on the following pages. 20

22 Task 13 - Completing the Student Cooking Website (continued) Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Pasta Basics Spices Explained Stir-fry Ingredients Pasta Basics Page A wireframe design for the <main> element of the Pasta Basics page is shown below. Add the HTML provided (pasta basics.txt) to the <main> element and implement this page using the design below. 10 pixel space above each image. 30 pixel space between the three images. 10 pixel space to the left of this image. spaghetti.jpg 190x120 penne.jpg 190x120 fusilli.jpg 190x pixel space to the left text. Numbered list used for instructions. 10 pixel space to the left text. Bulleted list used for instructions. Instructions for cooking pasta. How to make a simple tomato Sauce pixel space between images and the two text sections. 20 pixel space between the two text sections. 10 pixel space to the right text. 21

23 Task 13 - Completing the Student Cooking Website (continued) Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Woks Page Pasta Basics Spices Explained Stir-fry Ingredients A wireframe design for the <main> element of the Woks page is shown below. Add the HTML provided (wok.txt) to the <main> element and implement this page using the design below. Text flows around the Gap between image and wok image. text is 20 pixels. 10 pixel space above text. Heading - Choosing a Wok. 10 pixel space left of text. Text - advice on choosing a wok wok.jpg 300x200 Gap between image and text is 20 pixels. 20 pixel space between the text sections. Heading - Taking care of a Wok Text - Instructions on how to look after a wok Heading - Using a wok Embedded wok video 22

24 Task 13 - Completing the Student Cooking Website (continued) Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Chinese Page Pasta Basics Spices Explained Stir-fry Ingredients A wireframe design for the <main> element of the Woks page is shown below. Add the HTML provided (chinese.txt) to the <main> element and implement this page exactly as shown in the design. Do not fix any errors you may think there are in the design as these will be used as discussion points in booklet 3 - testing and evaluation. Heading - Chinese Cooking Text - An outline of Chinese cooking 10 pixel space around every side of this content. Links to wok and stir fry ingredients pages. Heading - Free Guide to Stir Fry Cooking Text - Instructions to complete the form below for a free guide. Would you prefer a paper or copy of the guide? paper please complete Address - text input box - max size 50 characters - required or Surname - text input box - max size 20 characters - required Street - text input box - max size 30 characters - required Town - text input box - max size 30 characters - required What type of wok have you experience of using? Drop down menu to pick favourite country on website (Steel, Aluminium, Flat-Bottom, Round-Bottom, Double-Handle, Single-Handle) User can select multiple options. All options should be visible. 23

25 Task 13 - Completing the Student Cooking Website (continued) Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Pasta Basics Spices Explained Stir-fry Ingredients Indian Page A wireframe design for the <main> element of the Indian page is shown below. Add the HTML provided (indian.txt) to the <main> element and implement this interactive page using the design below. 10 pixel space around text. Heading - Indian Cooking Text - An outline of Indian cooking. On mouse over swap image with indian3.jpg. indian1.jpg 150x300 Links to Three Curries and Spices Explained pages. On mouse out swap back to original image. On mouse over swap image with indian4.jpg. indian2.jpg 150x300 24

26 Task 13 - Completing the Student Cooking Website (continued) Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Thai Page Pasta Basics Spices Explained Stir-fry Ingredients A wireframe design for the <main> element of the Thai page is shown below. Add the HTML provided (thai.txt) to the <main> element and implement this interactive page using the design below. Gap between image and text is 10 pixels. Heading - Thai Cooking Text - An outline of Thai cooking. thai1.jpg 300x pixel space around text. 10 pixel space between images. Link to Red and Green Curries page. thai1.jpg 90x90 thai2.jpg 90x90 thai3.jpg 90x90 thai4.jpg 90x90 Interactivity: When the user clicks on one of the small 90x90 images the larger graphic should change to match that graphic. The large image should remain changed until another of the small images is clicked. 25

27 Task 13 - Completing the Student Cooking Website (continued) Home Page Italian Indian Thai Chinese Survey Pizza Basics Three Curry Recipes Red and Green Curries Woks Three Curry Recipes Page Pasta Basics Spices Explained Stir-fry Ingredients A wireframe design for the <main> element of the Three Curry Recipes page is shown below. Add the HTML provided (three curries.txt) to the <main> element and implement this interactive page using the design below. Three button graphics centred on the page. 10 pixel space between the three button graphics. Heading - Three Indian Curry Recipes 10 pixel space around text. Text - Please select one of the curries below. chickenbutton.jpg 120x50 Heading - Curry Name vegbutton.jpg 120x50 Text - Instructions on how to make the above curry. lambbutton.jpg 120x50 photo of curry 300x200 Gap between image and text is 20 pixels. Different image for each curry: chickencurry.jpg vegcurry.jpg lambcurry.jpg Gap between image and text is 20 pixels. Interactivity: When the user clicks on one of the button graphics the section below should change. Each section should contain a heading, a picture of the curry and a set of instructions on how to make the curry. Curry recipe 1 should be displayed when the page loads. 26

28

Higher Computing Science

Higher Computing Science Higher Computing Science Web Design & Development Booklet 2A (of 3) Implementation Examples Contents Introduction Page What s included in this Booklet? 3 Implementation Stage 1 - Website Layout 4 Coding

More information

Guidelines for doing the short exercises

Guidelines for doing the short exercises 1 Short exercises for Murach s HTML5 and CSS Guidelines for doing the short exercises Do the exercise steps in sequence. That way, you will work from the most important tasks to the least important. Feel

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 7 Dynamic HTML Dynamic HTML (DHTML) is a term that refers to website that use a combination of HTML, scripting such as JavaScript, CSS and the Document Object Model (DOM). HTML and

More information

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles Using Dreamweaver CC 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format

More information

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS LESSON 1 GETTING STARTED Before We Get Started; Pre requisites; The Notepad++ Text Editor; Download Chrome, Firefox, Opera, & Safari Browsers; The

More information

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles Using Dreamweaver 6 So far these exercises have deliberately avoided using HTML s formatting options such as the FONT tag. This is because the basic formatting available in HTML has been made largely redundant

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Computing Science: National 5 and Higher skills, knowledge and understanding

Computing Science: National 5 and Higher skills, knowledge and understanding Software design and development Development methodologies Analysis Design Describe and implement the phases of an iterative development process: analysis, design, implementation, testing, documentation,

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS:

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS: WEBSITE PROJECT 2 PURPOSE: The purpose of this project is to begin incorporating color, graphics, and other visual elements in your webpages by implementing the HTML5 and CSS3 code discussed in chapters

More information

Adobe Dreamweaver CS4

Adobe Dreamweaver CS4 Adobe Dreamweaver CS4 About Dreamweaver Whether creating simple blog pages complex web sites, Dreamweaver provides users with a powerful set of web-design tools necessary f the task. Its userfriendly interface

More information

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week WEB DESIGNING HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML - Lists HTML - Images HTML

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

When you complete this chapter, you will be able to:

When you complete this chapter, you will be able to: Page Layouts CHAPTER 7 When you complete this chapter, you will be able to: Understand the normal fl ow of elements Use the division element to create content containers Create fl oating layouts Build

More information

In this project, you ll learn how to create a webpage for your favourite recipe.

In this project, you ll learn how to create a webpage for your favourite recipe. Recipe Introduction In this project, you ll learn how to create a webpage for your favourite recipe. Step 1: Decide on a recipe Before you get coding, you ll need to decide on a recipe. Activity Checklist

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

UNSW Global Website Branding Guidelines. Website Brand Guidelines

UNSW Global Website Branding Guidelines. Website Brand Guidelines Website Brand Guidelines I Contents 1 Introduction... 1 2 Website Structure... 1 2.1 Page structure overview... 1 2.2 Home page structure... 1 2.3 Secondary page structure... 4 3 Page elements... 6 3.1

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

Exploring Computer Science Web Final - Website

Exploring Computer Science Web Final - Website Exploring Computer Science Web Final - Website Objective: Create a website using rollover menus. You will be graded on the following: Is your CSS in a separate file from your HTML? Are your colors and

More information

HTML and CSS a further introduction

HTML and CSS a further introduction HTML and CSS a further introduction By now you should be familiar with HTML and CSS and what they are, HTML dictates the structure of a page, CSS dictates how it looks. This tutorial will teach you a few

More information

AGENDA :: MULTIMEDIA TOOLS :: (1382) :: CLASS NOTES

AGENDA :: MULTIMEDIA TOOLS :: (1382) :: CLASS NOTES CLASS :: 13 12.01 2014 AGENDA SIMPLE CSS MENU W/ HOVER EFFECTS :: The Nav Element :: Styling the Nav :: UL, LI, and Anchor Elements :: Styling the UL and LI Elements TEMPLATE CREATION :: Why Templates?

More information

Positioning in CSS: There are 5 different ways we can set our position:

Positioning in CSS: There are 5 different ways we can set our position: Positioning in CSS: So you know now how to change the color and style of the elements on your webpage but how do we get them exactly where we want them to be placed? There are 5 different ways we can set

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar with Dynamic Background Image

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar with Dynamic Background Image GIMP WEB 2.0 MENUS Web 2.0 Menus: Horizontal Navigation Bar with Dynamic Background Image WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR DYNAMIC BACKGROUND IMAGE Before you begin this tutorial, you will need

More information

Create a Web Page with Spry Navigation Bar. March 30, 2010

Create a Web Page with Spry Navigation Bar. March 30, 2010 Create a Web Page with Spry Navigation Bar March 30, 2010 Open a new web page by selecting File on the Menu bar, and pick Open. Select HTML as the page type and none from the layout list. Finally, we press

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

CSS for Page Layout Robert K. Moniot 1

CSS for Page Layout Robert K. Moniot 1 CSS for Page Layout 2015 Robert K. Moniot 1 OBJECTIVES In this unit, you will learn: How to use style sheets for layout Controlling text flow, margins, borders, and padding Controlling visibility of elements

More information

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website.

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website. 9 Now it s time to challenge the serious web developers among you. In this section we will create a website that will bring together skills learned in all of the previous exercises. In many sections, rather

More information

Parashar Technologies HTML Lecture Notes-4

Parashar Technologies HTML Lecture Notes-4 CSS Links Links can be styled in different ways. HTML Lecture Notes-4 Styling Links Links can be styled with any CSS property (e.g. color, font-family, background, etc.). a { color: #FF0000; In addition,

More information

Dreamweaver Tutorial #2

Dreamweaver Tutorial #2 Dreamweaver Tutorial #2 My web page II In this tutorial you will learn: how to use more advanced features for your web pages in Dreamweaver what Cascading Style Sheets (CSS) are and how to use these in

More information

GIMP WEB 2.0 MENUS WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR CREATING AN HTML LIST

GIMP WEB 2.0 MENUS WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR CREATING AN HTML LIST GIMP WEB 2.0 MENUS Web 2.0 Menus: Horizontal Navigation Bar WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR Hover effect: CREATING AN HTML LIST Most horizontal or vertical navigation bars begin with a simple

More information

CSS: Layout Part 2. clear. CSS for layout and formatting: clear

CSS: Layout Part 2. clear. CSS for layout and formatting: clear CSS: Layout Part 2 Robert A. Fulkerson College of Information Science and Technology http://www.ist.unomaha.edu/ University of Nebraska at Omaha http://www.unomaha.edu/ CSS for layout and formatting: clear

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar

GIMP WEB 2.0 MENUS. Web 2.0 Menus: Horizontal Navigation Bar GIMP WEB 2.0 MENUS Web 2.0 Menus: Horizontal Navigation Bar WEB 2.0 MENUS: HORIZONTAL NAVIGATION BAR Hover effect: You may create your button in GIMP. Mine is 122 pixels by 48 pixels. You can use whatever

More information

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student Welcome Please sit on alternating rows powered by lucid & no.dots.nl/student HTML && CSS Workshop Day Day two, November January 276 powered by lucid & no.dots.nl/student About the Workshop Day two: CSS

More information

QRG: Using the WYSIWYG Editor

QRG: Using the WYSIWYG Editor WYSIWYG Editor QRG: Using the WYSIWYG Editor WYSIWYG stands for What You See Is What You Get. The WYSIWYG Editor is the reason you don t need to be an IT Programmer to write content for your web page.

More information

Block & Inline Elements

Block & Inline Elements Block & Inline Elements Every tag in HTML can classified as a block or inline element. > Block elements always start on a new line (Paragraph, List items, Blockquotes, Tables) > Inline elements do not

More information

Wanted! Introduction. Step 1: Styling your poster. Activity Checklist. In this project, you ll learn how to make your own poster.

Wanted! Introduction. Step 1: Styling your poster. Activity Checklist. In this project, you ll learn how to make your own poster. Wanted! Introduction In this project, you ll learn how to make your own poster. Step 1: Styling your poster Let s start by editing the CSS code for the poster. Activity Checklist Open this trinket: jumpto.cc/web-wanted.

More information

Downloads: Google Chrome Browser (Free) - Adobe Brackets (Free) -

Downloads: Google Chrome Browser (Free) -   Adobe Brackets (Free) - Week One Tools The Basics: Windows - Notepad Mac - Text Edit Downloads: Google Chrome Browser (Free) - www.google.com/chrome/ Adobe Brackets (Free) - www.brackets.io Our work over the next 6 weeks will

More information

HTML5, CSS3, JQUERY SYLLABUS

HTML5, CSS3, JQUERY SYLLABUS HTML5, CSS3, JQUERY SYLLABUS AAvhdvchdvchdvhdh HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments

More information

AGENDA. HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION <nav> :: CSS CODING FOR HOMEPAGE [ <nav> & child elements ] CLASS :: 13.

AGENDA. HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION <nav> :: CSS CODING FOR HOMEPAGE [ <nav> & child elements ] CLASS :: 13. :: DIGITAL IMAGING FUNDAMENTALS :: CLASS NOTES CLASS :: 13 04.26 2017 3 Hours AGENDA HTML CODING YOUR HOMEPAGE [ Part IV ] :: NAVIGATION home works

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Google Chrome 4.0. AccuCMS

Google Chrome 4.0. AccuCMS Google Chrome 4.0 AccuCMS Outline Contents Google Chrome 4.0... 4 Thank you for choosing Blue Archer... 4 As an AccuCMS user you can:... 4 Getting Started... 4 AccuCMS allows you to:... 4 Logging in to

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Mark Scheme. Edexcel Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web

Mark Scheme. Edexcel Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web Mark Scheme Edexcel Certificate in Digital Applications Unit 5: Coding for the Web General marking guidance All candidates must receive the same treatment. Examiners must mark the first candidate in exactly

More information

While editing a page, a menu bar will appear at the top with the following options:

While editing a page, a menu bar will appear at the top with the following options: Page Editor ===> Page Editor How Can I Use the Page Editor? The Page Editor will be your primary way of editing your website. Page Editor Basics While editing a page, you will see that hovering your mouse

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

5. When the Plugin Installed Successfully message appears, click Activate Plugin. You re all set, so let s get started with your first recipe post.

5. When the Plugin Installed Successfully message appears, click Activate Plugin. You re all set, so let s get started with your first recipe post. ZipList Recipe Plugin: Getting Started It s easy to get started with the ZipList Recipe Plugin. Simply install the free WordPress plugin and then we ll walk through how to use this helpful tool below.

More information

CSS THE M\SS1NG MANUAL. David Sawyer McFarland. POGUE PRESS" O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo

CSS THE M\SS1NG MANUAL. David Sawyer McFarland. POGUE PRESS O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo CSS THE M\SS1NG MANUAL David Sawyer McFarland POGUE PRESS" O'REILLr Beijing Cambridge Farnham Köln Paris Sebastopol Taipei Tokyo Table of Contents The Missing Credits Introduction xiii I Part One: CSS

More information

HTML5 & CSS 8 th Edition. Chapter 2 Building a Webpage Template with HTML5

HTML5 & CSS 8 th Edition. Chapter 2 Building a Webpage Template with HTML5 HTML5 & CSS 8 th Edition Chapter 2 Building a Webpage Template with HTML5 Objectives 1. Explain how to manage website files 2. Describe and use HTML5 semantic elements 3. Determine the elements to use

More information

CREATING ANNOUNCEMENTS. A guide to submitting announcements in the UAFS Content Management System

CREATING ANNOUNCEMENTS. A guide to submitting announcements in the UAFS Content Management System CREATING ANNOUNCEMENTS A guide to submitting announcements in the UAFS Content Management System Fall 2017 GETTING STARTED 1 First, go to news.uafs.edu. 2 Next, click Admin at the bottom of the page. NOTE:

More information

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

More information

Lava New Media s CMS. Documentation Page 1

Lava New Media s CMS. Documentation Page 1 Lava New Media s CMS Documentation 5.12.2010 Page 1 Table of Contents Logging On to the Content Management System 3 Introduction to the CMS 3 What is the page tree? 4 Editing Web Pages 5 How to use the

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Formatting Your Document University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Web Design and Implementation

Web Design and Implementation Study Guide 3 - HTML and CSS - Chap. 13-15 Name: Alexia Bernardo Due: Start of class - first day of week 5 Your HTML files must be zipped and handed in to the Study Guide 3 dropbox. Chapter 13 - Boxes

More information

SoftChalk 10. Level 1. University Information Technology Services. Learning Technologies, Training, Audiovisual, and Outreach

SoftChalk 10. Level 1. University Information Technology Services. Learning Technologies, Training, Audiovisual, and Outreach SoftChalk 10 Level 1 University Information Technology Services Learning Technologies, Training, Audiovisual, and Outreach Copyright 2018 KSU Division of University Information Technology Services This

More information

Lecture 13. Page Layout. Mr. Mubashir Ali Lecturer (Dept. of Computer Science)

Lecture 13. Page Layout. Mr. Mubashir Ali Lecturer (Dept. of Computer Science) Lecture 13 Page Layout Mr. Mubashir Ali Lecturer (Dept. of dr.mubashirali1@gmail.com 1 Summary of the previous lecture Font properties Controlling text with CSS Styling links Styling background Styling

More information

Tutorial 2 Editor Brackets

Tutorial 2 Editor Brackets Tutorial 2 Editor Brackets Goals Create a website showcasing the following techniques - Content switch with Javascript Website - Create a folder on the desktop called tutorial 2 o - Open Brackets o - Open

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development Objectives INFS 2150 Introduction to Web Development Create a media query Work with the browser viewport Apply a responsive design Create a pulldown menu with CSS Create a flexbox 5. Mobile Web INFS 2150

More information

INFS 2150 Introduction to Web Development

INFS 2150 Introduction to Web Development INFS 2150 Introduction to Web Development 5. Mobile Web Objectives Create a media query Work with the browser viewport Apply a responsive design Create a pulldown menu with CSS Create a flexbox INFS 2150

More information

Designing the Home Page and Creating Additional Pages

Designing the Home Page and Creating Additional Pages Designing the Home Page and Creating Additional Pages Creating a Webpage Template In Notepad++, create a basic HTML webpage with html documentation, head, title, and body starting and ending tags. From

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

Lesson 1 HTML Basics. The Creative Computer Lab. creativecomputerlab.com

Lesson 1 HTML Basics. The Creative Computer Lab. creativecomputerlab.com Lesson 1 HTML Basics The Creative Computer Lab creativecomputerlab.com What we are going to do today Become familiar with web development tools Build our own web page from scratch! Learn where to find

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format our web site. Just

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

<style type="text/css"> <!-- body {font-family: Verdana, Arial, sans-serif} ***set font family for entire Web page***

<style type=text/css> <!-- body {font-family: Verdana, Arial, sans-serif} ***set font family for entire Web page*** Chapter 7 Using Advanced Cascading Style Sheets HTML is limited in its ability to define the appearance, or style, across one or mare Web pages. We use Cascading style sheets to accomplish this. Remember

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

Taking Fireworks Template and Applying it to Dreamweaver

Taking Fireworks Template and Applying it to Dreamweaver Taking Fireworks Template and Applying it to Dreamweaver Part 1: Define a New Site in Dreamweaver The first step to creating a site in Dreamweaver CS4 is to Define a New Site. The object is to recreate

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

Lab Introduction to Cascading Style Sheets

Lab Introduction to Cascading Style Sheets Lab Introduction to Cascading Style Sheets For this laboratory you will need a basic text editor and a browser. In the labs, winedt or Notepad++ is recommended along with Firefox/Chrome For this activity,

More information

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 [AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 Length : 2 Days Audience(s) : New or existing users Level : 3 Technology : Adobe Dreamweaver CS6 program Delivery Method : Instructor-Led (Classroom) Course

More information

Introduction to HTML & CSS. Instructor: Beck Johnson Week 2

Introduction to HTML & CSS. Instructor: Beck Johnson Week 2 Introduction to HTML & CSS Instructor: Beck Johnson Week 2 today Week One review and questions File organization CSS Box Model: margin and padding Background images and gradients with CSS Make a hero banner!

More information

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes Course Title Course Code WEB DESIGNING TECHNOLOGIES DCE311 Lecture : 3 Course Credit Practical : Tutorial : 0 Total : 5 Course Learning Outcomes At end of the course, students will be able to: Understand

More information

Introduction to Cascading Style Sheet (CSS)

Introduction to Cascading Style Sheet (CSS) Introduction to Cascading Style Sheet (CSS) Digital Media Center 129 Herring Hall http://dmc.rice.edu/ dmc-info@rice.edu (713) 348-3635 Introduction to Cascading Style Sheets 1. Overview Cascading Style

More information

Website Training Part 2. Administration of the Website

Website Training Part 2. Administration of the Website Rotary Websites: Websites Club, Website Training Part 2 Administration of the Website Club Admin To login first click here Enter your username and password and then click Log In If you have forgotten your

More information

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

5 Snowdonia. 94 Web Applications with C#.ASP

5 Snowdonia. 94 Web Applications with C#.ASP 94 Web Applications with C#.ASP 5 Snowdonia In this and the following three chapters we will explore the use of particular programming techniques, before combining these methods to create two substantial

More information

Support Notes (Issue 1) September Snap it! Certificate in Digital Applications (DA105) Coding for the Web

Support Notes (Issue 1) September Snap it! Certificate in Digital Applications (DA105) Coding for the Web Support Notes (Issue 1) September 2014 Certificate in Digital Applications (DA105) Coding for the Web Snap it! Introduction Before tackling the Summative Project Brief (SPB), students should have acquired

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

Web Design and Development Tutorial 03

Web Design and Development Tutorial 03 Table of Contents Web Design & Development - Tutorial 03... 2 Using and Applying CSS to XHTML... 2 Conventions... 2 What you need for this tutorial... 2 Common Terminology... 3 Parent / Child Elements...

More information

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button.

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button. Microsoft QUICK Word 2010 Source Getting Started The Word Window u v w x z Opening a Document 2. Select Open in the left pane. 3. In the Open dialog box, locate and select the file you want to open. 4.

More information

Beginners Guide to Snippet Master PRO

Beginners Guide to Snippet Master PRO Beginners Guide to Snippet Master PRO This document assumes that Snippet Master has been installed on your site. If not please contact the Bakas IT web team at webreg@bakasit.com.au. Initial Login Screen...

More information

Dreamweaver MX Technical Support Services. Office of Information Technology, West Virginia University. OIT Help Desk ext.

Dreamweaver MX Technical Support Services. Office of Information Technology, West Virginia University. OIT Help Desk ext. Dreamweaver MX 2004 Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk - 293.4444 ext.1 http://oit.wvu.edu/support/training/classmat/ Instructors: Rick

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

More information

Web Engineering CSS. By Assistant Prof Malik M Ali

Web Engineering CSS. By Assistant Prof Malik M Ali Web Engineering CSS By Assistant Prof Malik M Ali Overview of CSS CSS : Cascading Style Sheet a style is a formatting rule. That rule can be applied to an individual tag element, to all instances of a

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

Editing your SiteAssist Professional Template

Editing your SiteAssist Professional Template Editing your SiteAssist Professional Template This Solution Recipe shows you how you can edit your SiteAssist Professional created templates to suit your needs. SiteAssist Professional creates your entire

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Dreamweaver CS5 Lab 4: Sprys

Dreamweaver CS5 Lab 4: Sprys Dreamweaver CS5 Lab 4: Sprys 1. Create a new html web page. a. Select file->new, and then Blank Page: HTML: 2 column liquid, left sidebar, header and footer b. DocType: XHTML 1.0 Strict c. Layout CSS:

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information