Computer Networks Lesson 4.

Slides:



Advertisements
Similar presentations
Web Design Vocab 3 PNG, JPG, GIF, MP3, MPEG.
Advertisements

WeB application development
Internet Research Internet Applications. The Internet is not the Web Because of the great popularity of the World Wide Web, people think the Internet.
Website design basics QUME Learning objectives Understand the basic elements of a Web page and how it is produced Be aware of different approaches.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (85) Lesson 4.2Lesson 4.2 Format.
HYPERTEXT MARKUP LANGUAGE (HTML)
Nat 4/5 - Software Design and Development – Low Level Operations - 1 National 4/5 – Computing Science Information Systems Design and Development Media.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Web Design Basic Concepts.
Unit 12 Additional Evidence Nihal. 1.1 I can describe what types of information are needed. Business card Business cards are important because they show.
Sem 1 v2 Chapter 14: Layer 6 - The Presentation layer.
Unit 12 Additional Evidence Chantelle. 1.1 I can describe what types of information are needed. Business card In my business card I included my logo I.
Institute of Technology Sligo - Dept of Computing Sem 1 Chapter 14: Layer 6 - The Presentation layer.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Chapter 1 Understanding the Web Design Environment Principles of Web Design, 4 th Edition.
Week 1 Understanding the Web Design Environment. 1-2 HTML: Then and Now HTML is an application of the Standard Generalized Markup Language Intended to.
Glencoe Digital Communication Tools Create a Web Page with HTML Chapter Contents Lesson 4.1Lesson 4.1 Get Started with HTML (pg. 85) Lesson 4.2Lesson 4.2.
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
Introduction to HTML Tutorial 1 eXtensible Markup Language (XML)
Common file formats  Lesson Objective: Understanding common file formats and their differences.  Learning Outcome:  Describe the type of files which.
GIF - Graphics Interchange Format JPEG - Joint Photographic Experts Group PNG - Portable Network Graphics GIF images are limited to the 8 bit palette which.
Lesson 7 – World Wide Web. What is the World Wide Web?  The content of the worldwide web is held on individual web pages gathered together to form websites.
Abigail morris.  Today I'm going to be explaining why the Internet relies on a number of protocols in order to function properly.  A protocol is simply.
File Format. Graphics file Format GIF (Graphics Interchange Format) JPEG (Joint Photographic Experts Group) PNG (Portable Network Graphics) TIFF (Tag.
Unit 1: Task 1 By Abbie Llewellyn. Vector Graphic Software (Corel Draw) Computer graphics can be classified into two different categories: raster graphics.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
FILE TYPES FOR WEB DESIGN 1 HOW SHOULD I SAVE?. GRAPHICS INTERCHANGE FORMAT (GIF) Best used for flat-color, sharp-edged art or text Clip art, logos Compression.
Image File Formats. What is an Image File Format? Image file formats are standard way of organizing and storing of image files. Image files are composed.
Presentation On HTML & Podcast Done by: Shamelia Young & Sheriece Williamson.
Digital File Formats By Ali Aslam. JPEG JPEG Stands for Joint Photographic Experts Group. JPEG uses a lossy compression routine. Lossy compression means.
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.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Websites Creating Basic Course. What´s a website ? A website (or "web site") is a collection of related web pages, images, videos or other digital assets.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Web Page Programming Terms. Chapter 1 Objectives Describe Internet and Understand Key terms Describe World Wide Web and its Key terms Identify types and.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
Basic concepts of web design
Section 8.1 Section 8.2 Create a custom theme Design a color scheme
Fall 2016 CSULA Saloni Chacha
Intro to HTML CS 1150 Spring 2017.
2.01 Understand Digital Raster Graphics
2.01 Understand Digital Raster Graphics
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Intro to HTML CS 1150 Fall 2016.
XHTML/CSS Week 1.
Chapter 1 Introduction to HTML.
How to create a static website with HTML
Introduction to HTML.
2.01 Understand Digital Raster Graphics
Uppingham Community College
Creating a Home Page in HTML
Introduction to XHTML.
A computer display is made up of small squares, called pixels.
Computer Networks Lesson 3.
Computer Networks Lesson 1.
Data Representation.
Summer 31: Web Authoring A trainee has started to create a single stylesheet to be used with the website. The stylesheet was not finished and contains.
2.01 Understand Digital Raster Graphics
2.01 Understand Digital Raster Graphics
Lesson 5: Multimedia on the Web
Introduction to Web Application Design
Computer Networks Lesson 3.
An Introduction to HTML Pages
Computer Networks Lesson 1.
Web Programming : Building Internet Applications Chris Bates CSE :
Lesson 6 File Types.
4.00 Apply procedures to add content by using Dreamweaver. (22%)
Presentation transcript:

Computer Networks Lesson 4

Starter Work in pairs to complete the word search and write a definition for the words and phrases you find in the grid.

Objective of the Lesson Understand how HTML works and the most common file types used over the internet. All of you will: Explain what HTML, PDF files and GIF files are used for. Most of you will: Create a simple webpage using HTML. Describe the difference between lossy and lossless file compression. Some of you will: Create a more advanced web page including links to external sources.

Homework Everybody should create a simple web page using HTML and email it to your teacher for marking. Some of you may also want to get the extra marks by creating a more advanced website. This homework is due in next lesson. Make sure you have written your homework clearly in your planner.

What is the Internet? The internet is a world wide network connecting millions of networks together over the globe. This allows us to share information easily between computers. It has revolutionised how people search for information, communicate with each other and how businesses advertise and sell to their customers.

<p>This is a paragraph.</p> HTML HTML is a language used for creating web pages. HTML stands for Hyper Text Markup Language It uses tags to describe the code. These are shown in triangular brackets as shown below: <p>This is a paragraph.</p> This ends the code. This starts the code.

Common Tags in HTML <h1>This is a main heading</h1> <h2>This is a sub-heading</h2> <p>This is a paragraph.</p> <a href="http://www.bbc.com">This is a link</a> <a href="mailto:admin@example.com">Send an e-mail</a> <b>Bold text</b> <i>Italic text</i> Start a new file using Notepad and enter the text as shown above. Save the file as Test.html. Open it up using a web browser and see what has happened to the tags.

HTML HTML has become the standard language used on websites. It is compact, very flexible and relatively easy to learn the basics. The HTML language was designed to be an efficient way of transferring and formatting data and was designed to be able to change as new media formats were created, whilst still remaining predictable to use.

Who created HTML? The standard language is decided upon by a large body of volunteers and experts called “The World Wide Web Consortium” They oversee the progress of the HTML language and guide its development. If you create a website using HTML then it should be readable by all browsers which understand HTML.

XHTML The next generation of HTML is called XHTML XHTML is stricter in its definition of tags (you can't get away with lazy marking-up, such as missing off closing tags) but it is much more flexible. When a computer reads any kind of document, it must follow a strict pattern or syntax, and the stricter this is, the easier the computer finds the interpretation. Web development software such as Dreamweaver and dedicated FrontPage make writing HTML and XHTML much easier.

CSS Much of the formatting of webpages can now be managed using Cascading Style Sheets (CSS). Cascading Style Sheets is a markup- based language used for describing the formatting of a document. A user can define their own styles for text for instance (Main Title = Bold, Large, Times New Roman and Red) and then this can be applied throughout a whole website and updated as necessary. This saves time and effort for the developer and ensures that a website has a consistent look.

What Do You Know About File Types? Work in pairs and decide what the following file types are used for: JPEG MPEG PDF GIF MP3 PNG

File Types Websites need to be as small as possible so that they do not take too long to load when a user wants to see the page. There are several file types which are used as standard in order to make sure they can be easily read and seen by all internet browsers. These include: JPEG, GIF and PNG – used for image files MPEG and MP3 – used for video and sound files PDF – used for other file types which can be downloaded

Images Most internet browsers understand GIF and JPEG image formats and most newer browsers also understand the PNG image format. To avoid long delays while the image is downloaded over the network, you should avoid using large image files. Generally speaking, JPEG is best for photographs, while GIF and PNG are good for graphics using flat areas of colour and lines.

MPEG and MP3 The Moving Picture Experts Group (MPEG) has developed a compression system used for video files. MPEG generally produces better-quality video than other video formats, such as Video for Windows or QuickTime. The MPEG compression system includes another system to compress sound files called MPEG Audio Layer-3 (MP3). MP3 can compress a song to around 10% of the original file size, but still retains something close to CD quality.

PDF files Portable Document Format (PDF) is an open standard file type used to exchange documents. It was originally created by Adobe. Many people install Adobe Reader onto their PC in order to read it although it can be read by other software such as Kindle. Nearly any type of file can be converted into a PDF file and this is a usual format in which to save files to be transmitted over the internet as the recipient can read it easily. PDF documents are a very convenient format to send documents as they generally cannot be changed. They print out easily and accurately without having to change the formatting.

File Compression All kinds of files can be compressed so that they can be transferred quickly: audio files, video files and still images. There are, broadly, two forms of compression: Lossless Lossy Lossless compression recreates a compressed file as an identical match to its original form and is usually used for files, such as applications, that need to be reproduced exactly like the original file. Lossy compression, on the other hand, eliminates repeated pieces of data which means that when the file is uncompressed it may have lost some of its quality.

Complete the Crossword Work in pairs to complete the crossword to recap what you have learnt today.