How the Web Works? WWW use classical client / server architecture

Slides:



Advertisements
Similar presentations
Anatomy of a Web Page. Parts of a Web Page Title Bar Navigation Tool Bar Location Bar Header Graphic/Image Text Horizontal Rule Links.
Advertisements

WEB DESIGN TABLES, PAGE LAYOUT AND FORMS. Page Layout Page Layout is an important part of web design Why do you think your page layout is important?
Internet Applications Development Lecture 2 L. Obead Alhadreti.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
A really fairly simple guide to: mobile browser-based application development (part 1) Chris Greenhalgh G54UBI / Chris Greenhalgh
MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction.
A Basic Introduction to the WWW and HTML How the World Wide Web Works.
 To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may.
Multiple Tiers in Action
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
NASRULLAH KHAN.  Lecturer : Nasrullah   Website :
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
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.
HTML: Hyptertext Markup Language Doman’s Sections.
Overview Web Session 3 Matakuliah: Web Database Tahun: 2008.
Client-side & Server-side Scripting ©Richard L. Goldman August 5, 2003 Requires PowerPoint 2002 or later for full functionality.
1 WWW. 2 World Wide Web Major application protocol used on the Internet Simple interface Two concepts –Point –Click.
Website design and structure. A Website is a collection of webpages that are linked together. Webpages contain text, graphics, sound and video clips.
Web programming Part 1: HTML 由 NordriDesign 提供
Introduction to Web & HTML
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
Notes Test #2 will be held one week from this Thursday Check to see if you have a Vision account –Launch Netscape –Point & Click to location and type vision.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Presented By Presented By Tanveera Akhter Class:CA 2 nd year Dated:12/12/3456 Dept of Comp. Science.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
Week 1: Introduction to HTML and Web Design
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Introduction and HTML overview
LECTURE 1 (ETCS-308) Subject teacher : Ms. Gunjan Beniwal
Web Systems & Technologies
LECTURE 2 (ETCS-308) Subject teacher : Ms. Gunjan Beniwal
Web Basics: HTML/CSS/JavaScript What are they?
HTML basics
Web Development Part 1.
Web Concepts Lesson 2 ITBS2203 E-Commerce for IT.
Introduction to ASP By “FlyingBono” 2009_01 By FlyingBono 2009_01
Web Design and Development
HTML Lab 5 10/1/2015.
Coding, Testing and Valdating a Web Page
Sec (4.3) The World Wide Web.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Barb Ericson Georgia Institute of Technology May 2006
XHTML 1 by Carsomyr.
Intro to Web Development Class A Review
HTML- Text, Hyperlink, Images
HTML Vocabulary.
HTML, Text, Images, Tables
Introduction to Web & HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML A brief introduction HTML.
Basic HTML and Embed Codes
Introduction to Web & HTML
Introduction to HTML5.
HTML Basics Web.
Pertemuan 1b
HTML Basic Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Common Page Design Elements
CIS 133 mashup Javascript, jQuery and XML
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
CHAPTER 1 INTRODUCTION TO HTML
Johan Ng and Muhammad Hazzry
Web Programming and Design
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

How the Web Works? WWW use classical client / server architecture HTTP is text-based request-response protocol HTTP Page request HTTP Server response Client running a Web Browser Server running Web Server Software (IIS, Apache, etc.) 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

HTML Basics Text, Images, Tables, Forms 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

Some HTML Tags 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

First HTML Page test.html <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

First HTML Page: Tags Opening tag Closing tag <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> Opening tag Closing tag An HTML element consists of an opening tag, a closing tag and the content inside. 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

First HTML Page: Header <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> HTML header 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

First HTML Page: Body <!DOCTYPE HTML> <html> <head> <title>My First HTML Page</title> </head> <body> <p>This is some text...</p> </body> </html> HTML body 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

Some Simple Tags Hyperlink Tags <a href="http://www.telerik.com/" Image Tags Text formatting tags <a href="http://www.telerik.com/" title="Telerik">Link to Telerik Web site</a> <img src="logo.gif" alt="logo" /> This text is <em>emphasized.</em> <br />new line<br /> This one is <strong>more emphasized.</strong> 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

Some Simple Tags – Example some-tags.html <!DOCTYPE HTML> <html> <head> <title>Simple Tags Demo</title> </head> <body> <a href="http://www.telerik.com/" title= "Telerik site">This is a link.</a> <br /> <img src="logo.gif" alt="logo" /> <strong>Bold</strong> and <em>italic</em> text. </body> </html> 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

Some Simple Tags – Example (2) some-tags.html <!DOCTYPE HTML> <html> <head> <title>Simple Tags Demo</title> </head> <body> <a href="http://www.telerik.com/" title= "Telerik site">This is a link.</a> <br /> <img src="logo.gif" alt="logo" /> <strong>Bold</strong> and <em>italic</em> text. </body> </html> 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

Headings and Paragraphs 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

<head> Section: <title> tag Title should be placed between <head> and </head> tags Used to specify a title in the window title bar Search engines and people rely on titles <title>Telerik Academy – Winter Season 2009/2010 </title> 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

<head> Section: <script> The <script> element is used to embed scripts into an HTML document Script are executed in the client's Web browser Scripts can live in the <head> and in the <body> sections Supported client-side scripting languages: javascript (it is not java!) vbscript jscript 06/7/2017 UNIT 1/HTML BASIC TAG/PHP/MYSQL/B.INDRANI

Thank you