HTML Frames.

Slides:



Advertisements
Similar presentations
Frames. What are frames? The ability to divide the browser window into sections that can function independently of one another. Navigation within the.
Advertisements

Creating Frames. Frames allow you to view more than one Web page at a time. You can split the browser window horizontally and vertically. You can also.
Frames How to make a page that uses frames. Preview There used to be a time that frames were frowned upon because most browsers did not support them Nowadays.
CREATED BY : VIRAL M.KORADIYA. Anchor elements are defined by the element. The element accepts several attributes, but either the Name or HREF attribute.
Chapter 11 Creating Framed Layouts Principles of Web Design, 4 th Edition.
Web-based Application Development Lecture 9 February 7, 2006 Anita Raja.
Frames 1 Lecture HTML: Frames and Miscellaneous Tags.
The Power of Tables They aren't just for sitting stuff on anymore...
Web Technologies Lecture # 5 : HTML Frames. Objectives n Create/control appearance & placement of frames n Control the behavior of hyperlinks on pages.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 9: Frames © 2007 Prosoft Learning Corporation All rights reserved ITD 110 Web Page Design.
Chapter 6 Working with Frames.
Lesson 4 HTML Structural Design Techniques
 You've probably come into contact with web sites in which the browser window seemingly allowed you to move around between several different pages. 
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 9: HTML Frames.
Frameset. FrameSet With frames, we can display more than one HTML document in the same browser window. Each HTML document is called a frame, and each.
HTML 2 FRAMES. Frames Intro Frames are a feature supported by Netscape 2.0 (and higher) Internet Explorer 3.0 (and higher) and a few other browsers. Frames.
Using Frames in a Web Site
Lecture on: Frames. FRAMES VERSUS TABLES Frames allow part of the page, usually a navigation bar, to stay put.
XHTML1 Topics Work with the Frameset Document Type Definition (DTD) Create frames Use the target and base attributes Create nested frames Format frames.
Notes Ch. 12—Creating Tables Web Page Design. Why Use Tables? Tables are used to create a variety of items such as calendars, charts, and spreadsheets.
HTML Essentials Frames and Frame Tags. Introduction A frame used to be an effective design tool Utilized space effectively by subdividing screen One idea:
WHAT are frames? what.html are.htmlframes.html. Intro to Frames HTML frames allow you to display more than 1 HTML document in the same browser window.
XP 1 Tutorial 5 Using Frames in a Web Site. XP 2 Tutorial Objectives  Describe the uses of frames in a Web site  Lay out frames within a browser window.
XP Using Frames in a Web Site Ali Alfayly. XP Tutorial Objectives Create frames for a Web site Control the appearance and placement of frames Control.
FRAMES. With frames, we can display more than one HTML document in the same browser window. Each HTML document is called the same browser window. Each.
CIS67 Foundations for Creating Web Pages Professor Al Fichera Reference for CIS127 and CIS 137.
HTML: Tables & Frames Internet Technology1. HTML: Tables Table tags ► surround the entire table ► header row (text is boldfaced) ► surround each row ►
Frame Page A Frame Page does the following: –Defines the size of each frame. –Defines how the window will be broken up – rows or columns. –Specifies which.
Tutorial 8 Designing a Web Site with Frames. XP Objectives Explore the uses of frames in a Web site Create a frameset consisting of rows and columns of.
Chapter 12 FRAMES. HOW FRAMES WORK When you view a framed page in a browser, you are actually looking at several HTML documents at once. The key to making.
Copyright (c) 2004 Prentice-Hall. All rights reserved. 1 Committed to Shaping the Next Generation of IT Experts. Project 7: Working with Frames Kelly L.
Working with HTML Frames The Good, The Bad & The Ugly.
CSCE 102 – Chapter 6 (Web Design and Layout) CSCE General Applications Programming Benito Mendoza Benito Mendoza 1 By Benito Mendoza.
Week 11 Creating Framed Layouts Objectives Understand the benefits and drawbacks of frames Understand and use frame syntax Customize frame characteristics.
1 Planning and Laying Out Frames Sketch the frame structure on paper before writing the HTML code two rows two columns.
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 6.
Kingdom of Saudi Arabia Ministry of Higher Education Al-Imam Muhammad Ibn Saud Islamic University College of Computer and Information Sciences Chapter.
Web111a_chapt05.ppt HTM: Section 5 Frames A section of the browser window capable of displaying an entire web page Display multiple web pages on the screen.
Chapter 5 Quick Links Slide 2 Performance Objectives Understanding Framesets and Frames Creating Framesets and Frames Selecting Framesets and Frames Using.
The Web Wizard’s Guide to HTML Chapter Seven Frames.
 2003 Prentice Hall, Inc. All rights reserved. Introduction to HTML: Frames Outline 1 Introduction 2 frameset Element 3 Nested frameset s 4 Web Resources.
Using Frames in a Website GMU November 12-13, 2004.
HTML: Tables & Frames Internet Technology.
HTML Hypertext Markup Language. WORKING WITH FRAMES.
Tutorial 8 Designing a Web Site with Frames. 2New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives Explore the uses of frames.
1 HTML Frames
HTML FRAMES With Frames, you can display more than one Web page in the same browser window.
HTML Frames. Advantages to Using Frames n flexibility in design n information in different Web pages n remove redundancy. n site easier to manage. n update.
20-753: Fundamentals of Web Programming 1 Lecture 6: Advanced HTML Fundamentals of Web Programming Lecture 6: Advanced HTML.
CSCI N241: Fundamentals of Web Design Copyright ©2004  Department of Computer & Information Science Working with Frames.
Frames. Dividing a page, called frameset, into frames, allow the visitor to see more than one page at a time Each frame contains its own Web page, and.
1 HTML Frames
Web Technology (NCS-504) Prepared By Mr. Abhishek Kesharwani Assistant Professor,UCER Naini,Allahabad.
Informatics Computer School CS114 Web Publishing HTML Lesson 3.
Site Development Foundations © 2004 ProsoftTraining All rights reserved.
XHTML Introductory1 Frames Chapter 5. XHTML Introductory2 Objectives In this chapter, you will: Work with the Frameset Document Type Definition (DTD)
HTML Comprehensive Concepts and Techniques Second Edition Creating Frames on a Web Page.
Lesson 9. Test 1 How was the test ? Assignment 1 (must complete satisfactorily even if you do not get any marks for it !!!!!!)
Introduction to HTML.
Client-Side Internet and Web Programming
HTML Structure II (Frame)
FRAMES.
Client-Side Internet and Web Programming
Table of Contents Creating Frames Frameset Tag and its attributes
Table of Contents Creating Frames Frameset Tag and its attributes
Table of Contents Creating Frames Frameset Tag and its attributes
HTML Tables & Frames Internet Technology.
HTML Frames
HTML Tables & Frames Internet Technology.
Presentation transcript:

HTML Frames

Introduction and Usage  Important In HTML  Vey Useful  Several Web Pages Can be Displayed In Same Browser Windows  Using Frames Several HTML Documents can be displayed in the Same Web Browser Windows  Each HTML Document is called A Frame  Each Frame is Independent of Others  Frameset Element is Used For Framing

Frameset Element  An Element  Holds One or More Frames  It Defines Following: 1. How Many Columns Are In The Frameset 2. How Many Rows Are In The Frameset 3. How Many Pixel/Percentage Space Each Will Occupy  <frameset> Is Opening Tag  </frameset> Is Closing Tag

Frameset Tag Attributes  cols: -- Specifies Number and Size of Columns In Frameset  rows: -- Specifies Number and Size of Rows In Frameset Possible Values For rows,cols Attributes: -- Pixel  Defines Size In Pixels -- Percentage  Size Is In Percentage of the Available Space -- *  Rest of Available Space is Assigned

The FRAME Tag  <frameset> Tag Defines A Frameset  <frame> Tag is Used to define Frames  Defines A Particular Window inside a Frameset Attributes: -- frameborder  Values(0,1) Specifies Whether to Display Border or Not -- marginheight  Specifies Top and Bottom Margins of Frame -- marginwidth  Specifies Left and Right Margins of Frame -- name  Specifies Name of Frame -- scrolling  Values(yes,no,auto) Specifes Whether to Display Scrolling Bars or Not -- src  Specifies the URL of the Web Page to be Displayed in the Frame

Horizontal Frames <html> <head> <title>Horizontal Frames</title> </head> <body> <frameset rows=“25%,75%” /> <frame src=“frame_a.html” /> <frame src=“frame_b.html” /> </frameset> </body> </html>

Vertical Frames <html> <head> <title>Vertical Frames</title> </head> <body> <frameset cols=“25%,75%” /> <frame src=“frame_a.html” /> <frame src=“frame_b.html” /> </frameset> </body> </html>

Mixed Frameset 1 <html> <head> <title>Mixed Frameset</title> </head> <body> <frameset cols="25%,75%"> <frame src="frame_a.htm" /> <frameset rows="20%,*" /> <frame src="frame_b.htm" /> <frame src="frame_c.htm" /> </frameset> </body> </html>

Mixed Frameset 2 <html> <head> <title>Mixed Frameset</title> </head> <body> <frameset rows="25%,50%" > <frame src="frame_a.html" /> <frameset cols="50%,50%" > <frame src="frame_b.html" /> <frame src="frame_c.html" /> </frameset> </body> </html>

Comprehensive Example Books.html <html> <body> <h4> books </h4> books list are as under <pre> 1. visual basic <br> 2. Web programming <br> 3. High Level Programming <br> 4. Java </pre> </body>

Comprehensive Example Contact.html <html> <body> <h4> contact us </h4> feel free to contact us regarding an query about net web:www.uaf.edu.pk <br> email:aaa@hotail.com <br> mob:0092-0300-46574478 </body>

Comprehensive Example Main.html <html> <body> <h3> welcome to online book </h3> online book shop provides you the facility to purchase published books on a variety of topic. You can purchase the books on your credit card. </body> </html>

Comprehensive Example menu.html <html> <body> <a href="main.html" target="main"> main </a> <br> <a href="books.html" target="main"> books </a> <br> <a href="contact.html" target="main"> contact us </a> </body>

Comprehensive Example top.html <html> <body> <h3> Computer Science Department </h3> <br> <h5>University of Agriculture Faisalabad </h5> </body> </html>

Comprehensive Example frame.html: <frameset rows="20%,80%"> <frame src="top.html" name="top"> <frameset cols="20%,80%"> <frame src="menu.html" name="left"> <frame src="main.html" name="main"> </frameset>

Preview