HYPERTEXT MARKUP LANGUAGE (HTML)

Slides:



Advertisements
Similar presentations
Workshop Servers (Server Software) Browsers Media Delivery Technologies: o Flash o QuickTime o Windows Media o Real. New Internet technology: XML XHTML.
Advertisements

3.01C Multimedia Elements and Guidelines 3.01 Explore multimedia systems, elements and presentations.
2.02F Publishing Animated Videos 2.02 Develop Computer Animations.
Chapter 11 Media and Interactivity Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Chapter 11 Media and Interactivity Basics Key Concepts
HTML Structure & Web Design Basics
Iframes & Images Using HTML.
Charmaine NormanCopyright What Is a Web Page Presented by Webpagemaker. Net Left click your mouse to view each frame, Web Page.
Section 9.1 Identify multimedia design guidelines Identify sources of multimedia files Explain the ethical use of multimedia files Describe multimedia.
1 Introduction to Computer Science بسم الله الرحمن الرحيم MULTIMEDIA LEVEL -9 King Khalid University Kingdom of Saudi Arabia Ministry of Higher Education.
Sounds, Images & Other Objects Website Production.
3.02C Multimedia Fair Uses Guidelines and Elements
3.02 Publishing Animations
Website design basics QUME Learning objectives Understand the basic elements of a Web page and how it is produced Be aware of different approaches.
Introduction to HTML 2006 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
IT-Academic Technology Services Using Microsoft PowerPoint 2010 for Digital Storytelling.
WEB DESIGNING Prof. Jesse A. Role Ph. D TM UEAB 2010.
© 2005 ComputerPREP, Inc. All rights reserved. HTML 4.0 and Web Page Design Module I.
HYPERTEXT MARKUP LANGUAGE (HTML) Vijaya K Pandey.
Web Design Basic Concepts.
Section 9.1 Section 9.2 YOU WILL LEARN TO…
Skill Area 212 Introduction to Multimedia Internet and MultiMedia for SC 2.
Chapter 14-Designing for the World Wide Web. Overview Introducing multimedia on the Web. Designing text for the Web. Creating images for the Web. Adding.
Section 2.1 Compare the Internet and the Web Identify Web browser components Compare Web sites and Web pages Describe types of Web sites Section 2.2 Identify.
Commonly Found Internet File Types The Internet provides access to many types of files, more than just HTML.
Sem 1 v2 Chapter 14: Layer 6 - The Presentation layer.
Multimedia and the Web Chapter Overview  This chapter covers:  What Web-based multimedia is  how it is used today  advantages and disadvantages.
The Internet 8th Edition Tutorial 9 Creating Effective Web Pages.
1 Web Basics Section 1.1 Compare the Internet and the Web Compare Web sites and Web pages Identify Web browser components Describe types of Web sites Section.
Institute of Technology Sligo - Dept of Computing Sem 1 Chapter 14: Layer 6 - The Presentation layer.
1 Lecture 12: Multimedia Not in Web 101 Text  Important Multimedia Issues  Audio  Movies and Video  Multimedia and HTML Documents.
2.02G Publishing Animated Videos 2.02 Develop Computer Animations.
Lights, Camera, Action! The Role of Multimedia in Web Applications Leading Multimedia Formats in Use Today What You Need to Know to Include Them in Your.
Multimedia and The Web.
Chapter 13-Tools for the World Wide Web. Overview Web servers. Web browsers. Web page makers and site builders. Plug-ins and delivery vehicles. Beyond.
Internet Business Foundations © 2004 ProsoftTraining All rights reserved.
Introduction to Web Design Web publishing HTML basics Web design principles Multimedia on the Web.
1 1 Introduction to Computer Science بسم الله الرحمن الرحيم MULTIMEDIA LEVEL -9 King Khalid University Kingdom of Saudi Arabia Ministry of Higher Education.
GIF - Graphics Interchange Format JPEG - Joint Photographic Experts Group PNG - Portable Network Graphics GIF images are limited to the 8 bit palette which.
Multimedia From Greenlaw/Hepp, In-line/On-line: Fundamentals of the Internet and the World Wide Web 1 Introduction Important Multimedia Issues Audio Movies.
File Format. Graphics file Format GIF (Graphics Interchange Format) JPEG (Joint Photographic Experts Group) PNG (Portable Network Graphics) TIFF (Tag.
File Format. Graphic file Format GIF –cross-platform compatibility –developed by CompuServe as a common format for exchanging bitmapped images between.
Multimedia and the Web.
Multimedia Web Pages. Multimedia displays Browser can load web pages that contains multimedia elements 1. Helper applications: stand-alone programs that.
Chap 14 Presentation Layer Andres, Wen-Yuan Liao Department of Computer Science and Engineering De Lin Institute of Technology
Chapter 6:Graphics & Multimedia. “ MULTIMEDIA is a seamless integration of data, text, image of all kinds and sound within a digital environment. ” FELDMAN,
Lesson 5 MULTIMEDIA. Multimedia on the Web has expanded rapidly as broadband connections have allowed users to connect at faster speeds. Almost all Web.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Layer 6 Presentation Layer. Overview Now that you have learned about Layer 5 of the OSI model, it is time to look at Layer 6, the presentation layer.
introductionwhyexamples What is a Web site? A web site is: a presentation tool; a way to communicate; a learning tool; a teaching tool; a marketing important.
Copyright © 2003 Prentice Hall, IncSlides created by Bob Koziel.
Section 9.1 Section 9.2 Identify multimedia design guidelines
Web Programming– UFCFB Lecture 8
3.02 Publishing Animations
2.02G Publishing Animated Videos
2.02F Publishing Animated Videos
3.01F Publishing Animated Videos
3.01C Multimedia Fair Uses Guidelines and Elements
COM 205 Multimedia Applications
COM 205 Multimedia Applications
3.01C Multimedia Elements and Guidelines
3.01C Multimedia Fair Uses Guidelines and Elements
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Final Study Guide Arts & Communications.
3.01C Multimedia Fair Uses Guidelines and Elements
Web Programming– UFCFB Lecture 8
3.01C Multimedia Elements and Guidelines
(c) V/2-Com (Verhaart) Multimedia Elements & standards 4/15/2019 (c) V/2-Com (Verhaart)
An Introduction to HTML Pages
3.01C Multimedia Fair Uses Guidelines and Elements
Presentation transcript:

HYPERTEXT MARKUP LANGUAGE (HTML)

HyperText Markup Language (HTML) HTML is used to create web documents including text, images, formatting, and hyperlinks to other documents. HTML documents consists of text and ‘markup’ tags which are used to define the structure, appearance, and function of the information. There are two types of markup tags: Container tags – Define a section of text using a start tag and an end tag. For example, text placed inside of these tags would appear in bold: <B>Hello</B> Empty tags – represent a single occurrence of an instruction. For example, the <BR> or break tag is used to indicate that you want to include a single space following the text.

Text Authoring Tools Any text editor can be used to create HTML documents. The most commonly used text editors are: Notepad (Windows) WordPad (Windows) Simpletext (Macintosh)

WYSIWYG Authoring Tools What You See is What You Get (WYSIWYG) authoring tools provide graphical user interfaces to simplify the creation of HTML documents. Examples of WYSIWYG authoring tools are: FrontPage by Microsoft Dreamweaver by Macromedia PageMill by Adobe Netscape Composer

Structure of an HTML Document An HTML document is divided into two main sections: Heading - The HEADing contains information describing the document, such as its title. The heading section is indicated by the <HEAD> and </HEAD> tags. Body - The BODY section is where the Web document text, graphics, and other elements are placed. The body section is indicated by the <BODY> and </BODY> tags.

Example of an HTML Document <HEAD> <TITLE>Career and Technical Education Home Page</TITLE> </HEAD> <BODY>This is the part of the Web page that viewers would see!</BODY> </HTML>

Graphic Files HTML supports two main graphic file formats: GIF - Graphics Interchange Format (CompuServe, pronounced GIF/JIF) GIF files provide a maximum of 8-bit (256 colors), use indexed color, can be interlaced (image displayed in four passes), and support transparency and animation. GIF files should be used for images such as logos, cartoons, and icons. JPG – Joint Photographic Expert Group (A jpg encoded graphics file - pronounced JAY-PEG) JPG files provide a maximum of 24 bit color (true color), can handle grayscale images, allow you to control compression, and are progressive (a designer can specify the number of passes to use when displaying the image (like GIF interfacing). JPG files should be used for photographs and paintings.

Graphic Files A newer format was introduced in 1995--PNG – Portable Network Format. PNG is an open standard. Use has been restricted because of limited browser support. It is generally supported by version 4.0 browsers and above. Provides 48 bit color, a compression system, interlacing (7 passes), and support for 8-bit transparency

Multimedia File Formats Multimedia files are used to provide audio and video. Audio and video may be supplied in two ways: Streaming Non-Streaming Non-streaming files must be downloaded in their entirety to the hard disk drive of the user’s machine before playing can begin. Streaming technology was developed to overcome the issue of download time.

Multimedia File Formats AVI – Audio-Video Interleaved (A standard format for computers) MOV – QuickTime Video (Format developed by Apple Computer that displays video, audio, and animation on Mac and Windows) MIDI – Musical Instrument Digital Interface (Audio format used for synthesized music rather than recordings. Files are smaller than WAV files MPG/MP3 – MPEG (Moving Picture Experts Group) – High quality compressed format for audio and video WAV – Used for high quality recordings for both mono and stereo audio tracks. Creates relatively large files.

Plug-Ins and Multimedia Extensions Browsers can be extended using additional software known as plug-ins. Plug-ins work as part of the browser. Plug-ins are available for audio and for displaying special effect images. Examples include: Shockwave Flash RealPlayer QTVR (Quick Time)

Plug-Ins and Multimedia Extensions Shockwave by Macromedia Used to provide interactive multimedia, graphics, animations, and streaming audio on the Web. Applications include games, business presentations and advertisements. Files containing sound and video are very large. Flash Player by Macromedia Provides support for animations, interactive images and presentations, all with integrated audio clips and streaming technology. Its main benefit is the small file size, which is achieved using vector-based graphics instead of bitmaps. Vector graphics are scalable, high quality, and interactive.

Plug-Ins and Multimedia Extensions RealPlayer by RealNetworks Provides live and on-demand streamed audio and video content on the web. It is widely used and is optimized for slow connections. RealPlayer can provide various audio qualities up to CD quality using ISDN and faster connections. Minimum support for reasonable quality is 28.8 Kbps. QuickTime Viewer from Apple Supports the viewing of graphics, audio, and video. NetScape Navigator 3+ and Internet Explorer 3+ are shipped with Quick viewer as part of the application. Quick time movies are popular because of their small file size.

Extensible Markup Language (XML) XML is the universal language for data formatting on the Web. The limited capabilities of HTML mean that many data types cannot be presented in a consistent and sophisticated manner, while XML can be customized by developers for any particular task such as: Financial data Scientific data Legal information

Virtual Reality Modeling Language (VRML) VRML is used to create three dimensional objects with different colors and textures which can be placed in a virtual reality space through which the user can move. Like HTML, the VRML language is interpreted by the browser. VRML supports Java and JavaScript as well as sound and animation.