Wichita State University Libraries SOAR: Shocker Open Access Repository

Size: px
Start display at page:

Download "Wichita State University Libraries SOAR: Shocker Open Access Repository"

Transcription

1 Wichita State University Libraries SOAR: Shocker Open Access Repository Donald L. Gilstrap University Libraries Managing World Wide Web Information in a Frames Environment: a Guide to Constructing Web Pages Using Frames Donald L. Gilstrap Wichita State University Citation Gilstrap, D.L. (1998). Managing World Wide Web Information in a Frames Environment: A Guide to Constructing Web Pages Using Frames. Library Software Review, 17(4), A post-print of this paper is posted in the Shocker Open Access Repository:

2 Managing World Wide Web Information in a Frames Environment A Guide to Constructing Web Pages Using Frames Abstract Donald L. Gilstrap This article serves as a guide for building World Wide Web pages using frames-based HTML. It covers the basic of frames tags and provides descriptions and examples for writing frames HTML code. Advanced concepts are included, as well as additional techniques for home page design. Introduction Over the past few years, the rise of World Wide Web-based resources has placed an increasing emphasis on the creation of library home pages that facilitate access to remote and electronic information. As the newer generation of students arrives at academic, public, and school libraries, they bring with them different cognitive styles based on a multimedia approach to learning. Students' learning habits have become more and more centered around visual representations of knowledge, and the World Wide Web has enabled them to navigate in a windows-oriented environment rather than just one window of information. And it's not just the students. Teachers, professors, administrators, and layfolk are now using this multiple windows environment when performing daily tasks on their computers. It is now possible to work on several applications simultaneously while navigating through various forms of electronic information. This poses a new and exciting challenge for us as librarians, who have always been at the forefront of Internet development. Many librarians across the country are taking on ambitious marketing projects to promote the services and resources we offer. However, it is increasingly difficult to capture the attention of library users via the World Wide Web without placing a more qualitative emphasis on the design elements of library home pages. But, how do we move beyond the work that has been done already to foster on-line research between librarians and the patrons we serve? Perhaps one way to achieve this is to begin managing the information we provide via the World Wide Web through a frames environment. Many Web designers can attest that using frames in home pages has always been a double-edged sword. On one hand, frames provide an opportunity to create multiple windows within one World Wide Web browser. On the other hand, frames are not the easiest application to understand or master when writing HTML code. Some of the new HTML editors do provide support for frames. However, many librarians have been frustrated by these editors: pages don't load correctly, they load in the wrong frame, links malfunction, or error messages occur where a frame should be. Having a knowledge of frames-based HTML can quickly remedy many of these problems, making it much easier to write HTML code or to work between an HTML editor and code writing. And viewing different documents while remaining in the basic structure of the library's home page makes the library user's Web experience less confusing.

3 This article focuses on frames-based concepts of Web design and how librarians can reenergize their home pages to reach out to the newer Web surfers. Using frames-based home pages, Web designers can launch multiple files (or rather windows) into one World Wide Web browser, helping librarians to organize the growing amount of information into a frames environment while making it easier for library users to navigate the Web. It is assumed that readers already have a working knowledge of the HyperText Markup Language (HTML) and the World Wide Web. For those who need a quick refresher course on writing HTML code, see Beverly K. Duval and Linda Main's article from the Winter 1995 issue of Library Software Review or locate the National Center for Supercomputing Applications beginning HTML course on the Internet 1. Working with Frames You must first set up a master frames page, which will be the page from which all the other documents link. Think of your frames page as a simplified spreadsheet where there are rows and columns for your information. Instead of inserting data into each cell you create in the rows and columns, you will insert an HTML page (or rather a window of a little more flexibility in how the frames will be presented in different browsers. You would write this the same way except you would use the percent (%) symbol after the values, for example, <frameset cols="60%,*"... >. Experiment with these values to fit your own preferences. Framespacing=10 tells the browser to allow 10 spaces for margins at the top, bottom, left, and right sides of the frame border, and frameborder=yes tells the browser to place borders around the frame's edges. The borders will be the gray vertical and horizontal lines that appear between each frame. In example 3, the statement <frame name...> lets you name this particular frame. For this demonstration, we will name it "top," being that it is the top row of the frames page. However, when you write your own HTML code, you can name these frames whatever you like. Notice that there is only one frame name in this row, because the next row is going to be divided into two columns (see example 4). The headings marginwidth=10 and marginheight=5 are variations of the framespacing tag. They set the frame to have margins of 10 spaces on the left and right side of the frame and 5 spaces on the top and bottom of the frame. Scrolling=auto means that, if the physical size of your HTML page can't fit into the size of the frame, the browser will automatically add scroll bars to the bottom and side of the frame. If you prefer not to have scroll bars in your frame, you would write scrolling=no. Frameborder=yes again places a visual border around the frame's edges. If you want the border to appear, you must do this for each frame. If you decide later that you want a seamless frames page, you would want to change this setting to frameborder=no. Experiment to find out which layout works best for you. The noresize command is optional. If you haven't noticed before, in a frames page you can click on the border of the frame with your mouse and drag it wherever you want the border to go. Using the noresize command disables users of your home page from resizing your frames. This is a particularly good command to use if you are worried about the information in a specific frame not having enough room to be displayed correctly. Finally, target="top" tells the browser to place the frame in the area you have already named "top." And src=''frame1.html" is the source name of the HTML file you are going to place in the top frame. The next lines of HTML code found in example 4 are for the columns section. If you have one long row at the top of the page with an HTML file in it, then you might want to divide the next

4 row into two columns (see example 8). Notice that this <frameset...> has two <frame name...> sections, because there are going to be two columns on the page. Just as you declared the size of each row, the HTML tag <frameset cols="155,*"...>defines the size of the columns on the page. The left column will have a pixel size of 155, and the right column will have the value of the remaining space by using the asterisk (*) symbol. Next, you will name each of these columns as frame name= right" and frame name="left". Again, for each column you should declare the sizes of the margins, whether you want scrolling bars and borders, the name of the HTML file you will place in each frame, and the target for each of the frames. After you have completed these steps, save this HTML code as the file test.html. You will then need to create three different files to fit into the test.html page. Open a new page in your text editor and type the lines of code from example 5. Save this code as the HTML file frame1.html. Do the same with the next examples, saving example 6 as frame2.html and example 7 as frame3.html. Make sure you save all of these files, including test.html, in the same directory on your hard drive, or the browser won't be able to find them. Then open your World Wide Web browser, select the File menu option, choose Open Page, and select the test.html file. Your page should look like the picture in example 8. If not, go back through the steps and make sure you didn't leave out any punctuation marks or make any typos. Now you can really begin to use the frames' capabilities. Let's say you want to put your library logo or title in the top frame (frame1.html). You could change your code from example 5 to read "The Virtual Library" instead of "Top Frame," or you could place an image there instead with the <img src="logo.gif" alt="library title"> tag, where logo.gif is the picture file you have created as your library logo. Now you can create an index in the left frame (frame2.html) that will remain on the screen while the information to which you link is presented in the right frame (frame3.html). Open example 6 (frame2.html) in your text editor one more time. Now change the code to that found in example 9. As you may have already discovered, the secret to navigating in frames is to declare in which window you want the link to send the information. This is done by using the target="right" statement inside the <a href=...> tag. We have stated target="right" because that is the name of the right frame where the information will appear. Again, you can name the frame whatever you like, but make sure you link to that frame name with the target option. When these files appear in your browser, the URLs will appear in the left column, and the information will be displayed in the right column after clicking on the individual links. If you don't add the target=statement, the link will appear in the same frame from which you linked. Save the HTML code in example 9 to the file frame2.html. Now open up the test.html file in your browser and click on the first link in the left frame. Your screen should appear similar to the picture in example 10. Again, the links on the left will be presented in the right frame once you click on them. There are times when you will want to be able to leave the frames environment for one reason or another: the window to which you are linking gets too cluttered, you are returning to a parent page within your domain, and so on. If this is the case, you would want to use the target="_parent" statement in your <a href= >tag as is shown in example 11. The

5 target="_parent" statement is a default HTML command that allows you to leave the test.html frame without launching an additional window as you might using JavaScript. Make sure to put the underscore symbol (_) in front of the word parent, or the command won't work. You might have been asking yourself, "what does the HTML tag <noframes> mean in example 1?" This tag is optional, but you might want to include it for patrons who are still using textbased World Wide Web browsers such as LYNX. When a text-based browser encounters a frames page, it doesn't know how to display the information. By using the <noframes> tag, you can place links you want people with non-frames-capable browsers to see. When the text-based browser loads the test.html page, it will bypass the information in the frames section of the HTML code and go directly to the information found between the <noframes> tags. You can manually type in the series of links you have already included in frame2.html between the <noframes> and the </noframes> tags as seen in example 12. Notice also that the <body> tags go between the <noframes> tags, but the last </frameset> tag goes after the last </noframes> tag. Adding a Bottom Frame After you have tried the previous examples, you might want to add another frame at the bottom of the screen that gives information about the URL the user is currently seeing. Or, you could add a glossary of terms, a directory of contact numbers for people at your organization, or an index to the links you have in your frames page. In this example, we will place links to some common search engines in the bottom frame. Look at the HTML code in example 13 and compare it to the code in example 1. Notice that in the first <frameset rows...> tag, we have added an additional dimension size. The line now reads <frameset rows=40,*,40>, where the top row is 40 pixels, the bottom row is 40 pixels, and the columns in between receive whatever pixel size is left for that row, using the asterisk (*) symbol. In this example, we have added an additional frame row after the </frameset> tag for the columns. It must go after the columns tag, or the browser will confuse it as a row within the columns. You will also see the name of this frame is "bottom," and it links to the page frame4.html, as seen in example 14. In example 14, you need to set up your URLs to link to whichever frame you want the information to appear in. In this case, the URLs are set up to link to the right frame. Notice also the use of the command. This is used to place a single blank space in between each one of the links to keep the frame from being cluttered. When you have changed the HTML code in example 13, save this file as test.html. Then, save the code from example 14 as frame4.html. Open the test.html file in your browser once more, and it should appear like the screen in example 15. Conclusion Once you have practiced using a few different frames, you should be well on your way to writing more advanced HTML code and designing high-caliber library home pages. You might also want to experiment with placing graphics files in your frames page. Currently, there are a number of graphics editors and draw programs that can make your Web site look even more professional. Adobe Photoshop, Paint Shop Pro, and Freehand are just a few of these applications, and they are well worth the investment in the long run. 2 With the right knowledge content, enhanced with

6 frames HTML code, your patrons will quickly recognize your library as one of the movers and shakers in the realm of World Wide Web information management. Notes 1. Beverly K. Duval and Linda Main, "Microcomputer Applications in the Library: Building Home Pages," Library Software Review 14 (Winter 1995): ; National Center for Supercomputing Applications, "A Beginner's Guide to HTML Home Page," March 12, 1998, at 2. For more information on Photoshop, see Beverly K. Duval and Linda Main, "Adding Images to Web Pages Using Adobe Photoshop 3.0 and Mapedit," Library Software Review 15 (Summer 1996): You might also want to download some of the common graphics editors and draw programs by visiting and For examples of how you might use a combination of informational links and graphics in a frames environment, see author's home page for the Connecticut Information Technology Institute Library Liaison project at uconn.edu/-dgilstrap/it1.htm or the Cornell University Library home page at Example 1 Examples Example 2 Example 3

7 Example 4 Example 5-7 Example 8

8 Example 9 Example 10 Example 11

9 Example 12 Example 13 Example 14

10 Example 15

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 10 10 Working with Frames Looking for a way to enhance your Web site layout? Frames can help you present multiple pages

More information

INFS 2150 / 7150 Introduction to Web Development & HTML Programming

INFS 2150 / 7150 Introduction to Web Development & HTML Programming Objectives INFS 2150 / 7150 Introduction to Web Development & HTML Programming Using Frames in a Web Site Create s for a Web site Control the appearance and placement of s Control the behavior of hyperlinks

More information

Objectives. Tutorial 8 Designing ga Web Site with Frames. Introducing Frames. Objectives. Disadvantages to Using Frames. Planning Your Frames

Objectives. Tutorial 8 Designing ga Web Site with Frames. Introducing Frames. Objectives. Disadvantages to Using Frames. Planning Your Frames Objectives Tutorial 8 Designing ga Web Site with Frames Explore the uses of frames in a Web site Create a frameset consisting of rows and columns of frames Display a document within a frame Format the

More information

Chapter 6. Using Frames in a Web Site

Chapter 6. Using Frames in a Web Site Chapter 6 Using Frames in a Web Site Chapter Objectives Define terms related to frames Describe the steps used to design a frame structure Plan and lay out a frameset Create a frame definition file that

More information

Attributes & Images 1 Create a new webpage

Attributes & Images 1 Create a new webpage Attributes & Images 1 Create a new webpage Open your test page. Use the Save as instructions from the last activity to save your test page as 4Attributes.html and make the following changes:

More information

framessp2015.notebook February 09, 2015

framessp2015.notebook February 09, 2015 To look at frames we are going to look at the examples under XHTML. http://www.pgrocer.net/cis44/cis44sampxhtml.html and scroll down to frames. 1 I have established a frameset (notice I did this instead

More information

frameset rows cols <frameset> rows cols

frameset rows cols <frameset> rows cols Frames Frames A frame is a section of the browser window capable of displaying the contents of an entire webpage. Frames are not the best way to lay out your website, and they have some serious disadvantages.

More information

Module: Online Publishing Year: 2 Lecturer: Maxwell Robertson Session: 3 Copyright 2004 (All Rights Reserved.

Module: Online Publishing Year: 2 Lecturer: Maxwell Robertson   Session: 3 Copyright 2004 (All Rights Reserved. Module: Online Publishing Year: 2 Lecturer: Maxwell Robertson Email: maxwell.robertson@cumbria.ac.uk Session: 3 Copyright 2004 (All Rights Reserved.) WEB sites are normally made up of multiple pages. These

More information

Tutorial 8: Designing a Web Site with Frames

Tutorial 8: Designing a Web Site with Frames Tutorial 8: Designing a Web Site with Frames College of Computing & Information Technology King Abdulaziz University CPCS-665 Internet Technology Objectives Explore the uses of frames in a Web site Create

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

Human Resources Diploma Toolbox. BSB50801 Diploma of Business (Human Resources)

Human Resources Diploma Toolbox. BSB50801 Diploma of Business (Human Resources) Technical manual Human Resources Diploma Toolbox BSB50801 Diploma of Business (Human Resources) Technical manual... 1 Client technical requirements... 2 Accessibility... 3 File structure... 5 Software

More information

Create a New Notebook Create a New Notebook

Create a New Notebook Create a New Notebook Create a New Notebook Create a New Notebook Click File > New Select Computer or Your SkyDrive Type in Name of Notebook Click Create Notebook (Click to save to another file) Note: This is part of a database.

More information

Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions

Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions Architectural Engineering Senior Thesis CPEP Webpage Guidelines and Instructions Your Thesis Drive (T:\) Each student is allocated space on the Thesis drive. Any files on this drive are accessible from

More information

To assign a name to a frame, add the name attribute to the frame tag. The syntax for this attribute is: <frame src= url name= name />

To assign a name to a frame, add the name attribute to the frame tag. The syntax for this attribute is: <frame src= url name= name /> Assigning a Name to a Frame To assign a name to a frame, add the name attribute to the frame tag. The syntax for this attribute is: case is important in assigning names: information

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

Website Administration Manual, Part One

Website Administration Manual, Part One Website Administration Manual, Part One A Guide to the CMS & Widgets Curry School of Education Website http://curry.virginia.edu The Curry Website Administrators Manual - Part One 2 The CMS The content

More information

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal

COMSC-031 Web Site Development- Part 2. Part-Time Instructor: Joenil Mistal COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal Chapter 9 9 Creating Pages with Frames You can divide the display area of a Web browser into multiple panes by creating frames.

More information

HTML: Fragments, Frames, and Forms. Overview

HTML: Fragments, Frames, and Forms. Overview HTML: Fragments, Frames, and Forms Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@ imap.pitt.edu http://www.sis. pitt.edu/~spring Overview Fragment

More information

Lecturer. Haider M. Habeeb. Second Year, First Course

Lecturer. Haider M. Habeeb. Second Year, First Course University of Babylon College of Information Technology Department of Information Networks Lecturer Haider M. Habeeb Second Year, First Course 2012-2013 Understand Hypertext and Links Why did the arrival

More information

Harlan County Public Schools. NTI Days Web Design, Advanced Multimedia. Grades 9-12, HCHS

Harlan County Public Schools. NTI Days Web Design, Advanced Multimedia. Grades 9-12, HCHS Harlan County Public Schools NTI Days 1-10 Web Design, Advanced Multimedia Grades 9-12, HCHS Introduction: On any days designated as Non-Traditional Instruction (NTI) days, students will be required to

More information

Sign in and join ADC Newsletters Feedback. Creating your first website Part 2: Creating the page layout

Sign in and join ADC Newsletters Feedback. Creating your first website Part 2: Creating the page layout 1 of 14 2/14/2008 2:31 PM Adobe Dreamweaver Article Adobe Developer Connection Sign in and join ADC Newsletters Feedback RSS Creating your first website Part 2: Creating the page layout Jon Varese Adobe

More information

ADOBE 9A Adobe Dream weaver CS3 ACE.

ADOBE 9A Adobe Dream weaver CS3 ACE. ADOBE 9A0-056 Adobe Dream weaver CS3 ACE http://killexams.com/exam-detail/9a0-056 QUESTION: 127 You are developing dynamic pages for which you want to set up a testing server. You want to choose ColdFusion

More information

TourMaker Reference Manual. Intro

TourMaker Reference Manual. Intro TourMaker Reference Manual Intro Getting Started Tutorial: Edit An Existing Tour Key Features & Tips Tutorial: Create A New Tour Posting A Tour Run Tours From Your Hard Drive Intro The World Wide Web is

More information

Getting Help...71 Getting help with ScreenSteps...72

Getting Help...71 Getting help with ScreenSteps...72 GETTING STARTED Table of Contents Onboarding Guides... 3 Evaluating ScreenSteps--Welcome... 4 Evaluating ScreenSteps--Part 1: Create 3 Manuals... 6 Evaluating ScreenSteps--Part 2: Customize Your Knowledge

More information

Human Resources Diploma Toolbox, version 1.1. BSB50801 Diploma of Business (Human Resources)

Human Resources Diploma Toolbox, version 1.1. BSB50801 Diploma of Business (Human Resources) Technical manual Human Resources Diploma Toolbox, version 1.1 BSB50801 Diploma of Business (Human Resources) Technical manual... 1 Client technical requirements... 2 Accessibility... 3 File structure...

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

The Text Editor appears in many locations throughout Blackboard Learn and is used to format text. For example, you can use it to:

The Text Editor appears in many locations throughout Blackboard Learn and is used to format text. For example, you can use it to: About the Text Editor The Text Editor appears in many locations throughout Blackboard Learn and is used to format text. For example, you can use it to: Add items to Content Areas, Learning Modules, Lesson

More information

LESSON LEARNING TARGETS

LESSON LEARNING TARGETS DAY 3 Frames LESSON LEARNING TARGETS I can describe the attributes of the tag. I can write code to create frames for displaying Web pages with headings, menus, and other content using the

More information

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist Creating Effective School and PTA Websites Sam Farnsworth Utah PTA Technology Specialist sam@utahpta.org Creating Effective School and PTA Websites Prerequisites: (as listed in class description) HTML

More information

MICROSOFT POWERPOINT BASIC WORKBOOK. Empower and invest in yourself

MICROSOFT POWERPOINT BASIC WORKBOOK. Empower and invest in yourself MICROSOFT POWERPOINT BASIC WORKBOOK Empower and invest in yourself 2 Workbook Microsoft PowerPoint Basic onlineacademy.co.za MODULE 01 GETTING STARTED WITH POWERPOINT 1. Launch a blank PowerPoint presentation.

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

A Double Edged Sword. December 10, Originally published March 15, 1996 in Web Review magazine.

A Double Edged Sword. December 10, Originally published March 15, 1996 in Web Review magazine. A Double Edged Sword December 10, 2009 Originally published March 15, 1996 in Web Review magazine. Architecturally speaking, frames are one of the most intriguing HTML extensions around. Unfortunately,

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

Chopra Teachers Directory Listing Manual

Chopra Teachers Directory Listing Manual Chopra Teachers Directory Listing Manual Table of Contents Introduction... 1 Login... 2 Managing your Directory Listing... 3 Locations... 3 Adding or Editing a Location... 4 Managing Featured Teacher Information...

More information

Glossary. advance: to move forward

Glossary. advance: to move forward Computer Computer Skills Glossary Skills Glossary advance: to move forward alignment tab: the tab in the Format Cells dialog box that allows you to choose how the data in the cells will be aligned (left,

More information

Skill Area 323: Design and Develop Website. Multimedia and Web Design (MWD)

Skill Area 323: Design and Develop Website. Multimedia and Web Design (MWD) Skill Area 323: Design and Develop Website Multimedia and Web Design (MWD) 323.3 Create a Web page using tables and frames (7 hrs) 323.3.1 Insert and modify tables on a Web page 323.3.2 Merge and split

More information

Graduate Health Sciences Word Topics

Graduate Health Sciences Word Topics Graduate Health Sciences Word Topics This workshop is based on topics provided by Graduated Health Sciences. Have you ever moved text from one part of a Word document to another, and the formatting changed

More information

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

FCKEditor v1.0 Basic Formatting Create Links Insert Tables FCKEditor v1.0 This document goes over the functionality and features of FCKEditor. This editor allows you to easily create XHTML compliant code for your web pages in Site Builder Toolkit v2.3 and higher.

More information

Image Optimisation. Image Dimensions...1 Image File Formats...2 Adding Images...5 Thumbnails...13 Summary...15

Image Optimisation. Image Dimensions...1 Image File Formats...2 Adding Images...5 Thumbnails...13 Summary...15 Table of Contents Image Optimisation Image Dimensions...1 Image File Formats...2 Adding Images...5 Thumbnails...13 Summary...15 Introduction Images are placed on a website to enhance its appearance. However,

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

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

Unified Classroom: Class Pages

Unified Classroom: Class Pages Unified Classroom: Class Pages Unified Classroom April 2018 Release Unified Classroom: Class Pages Basics Contents Unified Classroom: Class Pages Basics... 3 Building Class Pages... 3 Access Class Pages...

More information

STAROFFICE 8 SUMMARY PROJECT

STAROFFICE 8 SUMMARY PROJECT STAROFFICE 8 SUMMARY PROJECT Putting It All Together In the previous three guides you have learned an incredible amount about publishing information with StarOffice 8 Writer, Draw, and Calc. You can create,

More information

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms Using RedDot A Quick-Reference Guide To access reddot: https://cms.hampshire.edu/cms For help: email reddot@hampshire.edu or visit http://www.hampshire.edu/computing/6433.htm Where is... Page 6 Page 8

More information

Creating a Web Page with HTML

Creating a Web Page with HTML CT1501 DEVELOPMENT OF INTERNET APPLICATION Creating a Web Page with HTML Prepared By: Huda Alsuwailem Reviewed by: Rehab Alfallaj www.faculty.ksu.edu.sa/rehab-alfallaj ralfallaj@ksu.edu.sa Tables

More information

HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites

HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites HTML Exercise 20 Linking Pictures To Other Documents Or Web Sites Turning pictures into hyperlinks is nearly the same as what you learned in Exercises 4 and 5. If a picture is essential to a Web page,

More information

IMY 110 Theme 11 HTML Frames

IMY 110 Theme 11 HTML Frames IMY 110 Theme 11 HTML Frames 1. Frames in HTML 1.1. Introduction Frames divide up the web browser window in much the same way that a table divides up part of a page, but a different HTML document is loaded

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

Introduction to Computer Science (I1100) Internet. Chapter 7

Introduction to Computer Science (I1100) Internet. Chapter 7 Internet Chapter 7 606 HTML 607 HTML Hypertext Markup Language (HTML) is a language for creating web pages. A web page is made up of two parts: the head and the body. The head is the first part of a web

More information

Adding Frames. In This Chapter

Adding Frames. In This Chapter B1 Adding Frames Normally, a Web page fills an entire browser window. However, a browser window can be split into two or more smaller individual panes called frames. Each frame contains an individual Web

More information

Creating web pages Chapter 5. Structuring contents

Creating web pages Chapter 5. Structuring contents ESCUELA TÉCNICA SUPERIOR DE INGENIERÍA ICAI Cristina Puente, Rafael Palacios 2009-2010 Lists Lists! To enumerate several contents. Different types of lists can be combined. The general format is the following:

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

FrontPage. Directions & Reference

FrontPage. Directions & Reference FrontPage Directions & Reference August 2006 Table of Contents Page No. Open, Create, Save WebPages Open Webpage... 1 Create and Save a New Page... 1-2 Change the Background Color of Your Web Page...

More information

Azon Master Class. By Ryan Stevenson Guidebook #7 Site Construction 2/3

Azon Master Class. By Ryan Stevenson   Guidebook #7 Site Construction 2/3 Azon Master Class By Ryan Stevenson https://ryanstevensonplugins.com/ Guidebook #7 Site Construction 2/3 Table of Contents 1. Creation of Site Pages 2. Category Pages Creation 3. Home Page Creation Creation

More information

HTML/CSS Lesson Plans

HTML/CSS Lesson Plans HTML/CSS Lesson Plans Course Outline 8 lessons x 1 hour Class size: 15-25 students Age: 10-12 years Requirements Computer for each student (or pair) and a classroom projector Pencil and paper Internet

More information

Building a Community Page

Building a Community Page Building a Community Page What is a Community Page? A community page is a portion of your website where you discuss a specific community you serve. Many customers are capable of finding listings on the

More information

Creating Web Pages. Getting Started

Creating Web Pages. Getting Started Creating Web Pages Getting Started Overview What Web Pages Are How Web Pages are Formatted Putting Graphics on Web Pages How Web Pages are Linked Linking to other Files What Web Pages Are Web Pages combine

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

Netscape Composer Tutorial

Netscape Composer Tutorial Netscape Composer Tutorial This tutorial will show you how to use Netscape Composer to create web pages. Netscape Composer integrates powerful What-You-See-Is-What-You-Get (WYSIWYG) document creation capabilities

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

Creating a Course Web Site

Creating a Course Web Site Creating a Course Web Site What you will do: Use Web templates Use shared borders for navigation Apply themes As an educator or administrator, you are always looking for new and exciting ways to communicate

More information

COMM 2555: Interactive Digital Communication / Spring 2018 Lab 9: Basic layout techniques with CSS

COMM 2555: Interactive Digital Communication / Spring 2018 Lab 9: Basic layout techniques with CSS COMM 2555: Interactive Digital Communication / Spring 2018 Lab 9: Basic layout techniques with CSS Goals Practice working with the CSS box model, positioning and layout Step 1. Create your infrastructure

More information

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 This document may not be reproduced or redistributed without the permission of the copyright holder. It may not be posted on

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

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

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

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

Chapter 1 Self Test. LATIHAN BAB 1. tjetjeprb{at}gmail{dot}com. webdesign/favorites.html :// / / / that houses that information. structure?

Chapter 1 Self Test. LATIHAN BAB 1. tjetjeprb{at}gmail{dot}com. webdesign/favorites.html :// / / / that houses that information. structure? LATIHAN BAB 1 Chapter 1 Self Test 1. What is a web browser? 2. What does HTML stand for? 3. Identify the various parts of the following URL: http://www.mcgrawhill.com/books/ webdesign/favorites.html ://

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1 Introduction Chapter 1: Structuring Documents for the Web 1 A Web of Structured Documents 1 Introducing HTML and XHTML 2 Tags and Elements 4 Separating Heads from Bodies 5 Attributes Tell Us About Elements

More information

By Ryan Stevenson. Guidebook #2 HTML

By Ryan Stevenson. Guidebook #2 HTML By Ryan Stevenson Guidebook #2 HTML Table of Contents 1. HTML Terminology & Links 2. HTML Image Tags 3. HTML Lists 4. Text Styling 5. Inline & Block Elements 6. HTML Tables 7. HTML Forms HTML Terminology

More information

ENGL 323: Writing for New Media Building a Blog Reader Using Links, Tables, Images, and Frames

ENGL 323: Writing for New Media Building a Blog Reader Using Links, Tables, Images, and Frames ENGL 323: Writing for New Media Building a Blog Reader Using Links, Tables, Images, and Frames Dr. Michael Little michaellittle@kings.edu Hafey-Marian 418 x5917 Office hours: MW 11-12, 1-2, F 11-12; TTh

More information

How to Hide Your Affiliate Links

How to Hide Your Affiliate Links How to Hide Your Affiliate Links 1 st Edition v.1.0.1 Akinori Furukoshi DISCLAIMER This book was written to provide information regarding the subject matter. It is distributed with the understanding that

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

WCCUSD Website. Centricity 2 Tutorial Guide. Site Manager Workspace.

WCCUSD Website. Centricity 2 Tutorial Guide. Site Manager Workspace. WCCUSD Website Centricity 2 Tutorial Guide Site Manager Workspace webmaster@wccusd.net Contents To Sign onto the WCCUSD website:... 2 Site Workspace Home Page Editors... 4 Site Workspace Sub Site Director/Individual

More information

Chapter 25. Build Creations with Your Photos

Chapter 25. Build Creations with Your Photos Chapter 25 Build Creations with Your Photos 2 How to Do Everything with Photoshop Elements How to Create a slide show to show off your images Post your images in web pages Build cards, calendars, and postcards

More information

ADOBE Dreamweaver CS3 Basics

ADOBE Dreamweaver CS3 Basics ADOBE Dreamweaver CS3 Basics IT Center Training Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu This page intentionally left blank 2 8/16/2011 Contents Before you start with Dreamweaver....

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Hyper- Any time any where go to any web pages. Text- Simple Text. Markup- What will you do

Hyper- Any time any where go to any web pages. Text- Simple Text. Markup- What will you do HTML Interview Questions and Answers What is HTML? Answer1: HTML, or HyperText Markup Language, is a Universal language which allows an individual using special code to create web pages to be viewed on

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1 59313ftoc.qxd:WroxPro 3/22/08 2:31 PM Page xi Introduction xxiii Chapter 1: Creating Structured Documents 1 A Web of Structured Documents 1 Introducing XHTML 2 Core Elements and Attributes 9 The

More information

USER GUIDE MADCAP FLARE WebHelp

USER GUIDE MADCAP FLARE WebHelp USER GUIDE MADCAP FLARE 2018 WebHelp Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Web Accessibility Checklist

Web Accessibility Checklist Web Accessibility Checklist = Web Content Accessibility Guidelines published by the World Wide Web Consortium (W3C) 508 = Section 508 of the Rehabilitation Act = Both CATE and Moodle take care of the rule

More information

Photos (Step by Step Pictures, Adobe Photoshop, Digital Photography, Graphic Design) PDF

Photos (Step by Step Pictures, Adobe Photoshop, Digital Photography, Graphic Design) PDF BEST PHOTOSHOP: Absolute Beginners Guide To Mastering Photoshop And Creating World Class Photos (Step by Step Pictures, Adobe Photoshop, Digital Photography, Graphic Design) PDF PDF File: BEST PHOTOSHOP:

More information

c122sep2914.notebook September 29, 2014

c122sep2914.notebook September 29, 2014 Have done all at the top of the page. Now we will move on to mapping, forms and iframes. 1 Here I am setting up an image and telling the image to uuse the map. Note that the map has name="theimage". I

More information

RAGE WebDesign Quick Start 1 of 18. Welcome To RAGE WebDesign

RAGE WebDesign Quick Start 1 of 18. Welcome To RAGE WebDesign RAGE WebDesign Quick Start 1 of 18 Welcome To RAGE WebDesign RAGE WebDesign Quick Start 2 of 18 About This Quick Start Guide 3 An Introduction To Html 3 Helpful Tips For Working With Rage Webdesign 7 See

More information

Page Layout Using Tables

Page Layout Using Tables This section describes various options for page layout using tables. Page Layout Using Tables Introduction HTML was originally designed to layout basic office documents such as memos and business reports,

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

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

Collaborate Ultra in D2L Brightspace Guide for Moderating and Presenting

Collaborate Ultra in D2L Brightspace Guide for Moderating and Presenting Collaborate Ultra in D2L Brightspace Guide for Collaborate is a web-based video conferencing system allowing participants to engage in twoway audio, multi-point video, interactive whiteboard, application

More information

Dreamweaver: Accessible Web Sites

Dreamweaver: Accessible Web Sites Dreamweaver: Accessible Web Sites Introduction Adobe Macromedia Dreamweaver 8 provides the most complete set of tools available for building accessible web sites. This workshop will cover many of them.

More information

What s New in Office 2010?

What s New in Office 2010? What s New in Office 2010? General Changes in Office 2010 Applications This document provides a summary of highlighted/significant changes in Office 2010 with simple step-by-step directions for each highlighted

More information

Section 6: Dreamweaver

Section 6: Dreamweaver Section 6: Dreamweaver 1 Building TPS Web Pages with Dreamweaver Title Pages 1. Dreamweaver Storyboard Pages 3 2. Folder Management 4 3. Defining Your Site 5-8 4. Overview of Design Features 9-19 5. Working

More information

Indian Institute of Technology Kharagpur. HTML Part III. Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T.

Indian Institute of Technology Kharagpur. HTML Part III. Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T. Indian Institute of Technology Kharagpur HTML Part III Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T. Kharagpur, INDIA Lecture 15: HTML Part III On completion, the student will be able

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Chapter 5. Introduction to XHTML: Part 2

Chapter 5. Introduction to XHTML: Part 2 Chapter 5. Introduction to XHTML: Part 2 Tables Attributes of the table element: border: width of the table border in pixels (0 makes all lines invisible) align: horizontal alignment (left, center, or

More information

GSLIS Technology Orientation Requirement (TOR)

GSLIS Technology Orientation Requirement (TOR) TOR Part 2: Introduction GSLIS Technology Orientation Requirement (TOR) TOR Part 2: Assessment 10: Introduction to HTML Possible Points: 9 Points Needed to Pass Quiz 1: 7 Due Dates for Part 2 Part 2 of

More information

HOW TO DOWNLOAD, INSTALL, and USE HTMLDOC v FOR WINDOWS

HOW TO DOWNLOAD, INSTALL, and USE HTMLDOC v FOR WINDOWS HOW TO DOWNLOAD, INSTALL, and USE HTMLDOC v1.8.14 FOR WINDOWS Adobe portable document format (PDF) is the standard format for distribution of documents over the internet. Documents can not be written in

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several

More information