Web Pages, Web Sites, and E-commerce

Slides:



Advertisements
Similar presentations
Overview Environment for Internet database connectivity
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?
Chapter 7: The Web and 1 The Web and Chapter 7.
Project 1 Introduction to HTML.
Introduction to Web Application Architectures Web Application Architectures 18 th March 2005 Bogdan L. Vrusias
Dreamweaver 8 Concepts and Techniques Introduction Web Site Development and Macromedia Dreamweaver 8.
1st Project Introduction to HTML.
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.
E-Commerce and Web Site Development How Do You Harness the Power of the Web? Chapter 8.
HTML 1 Introduction to HTML. 2 Objectives Describe the Internet and its associated key terms Describe the World Wide Web and its associated key terms.
Chapter ONE Introduction to HTML.
Web Design Basic Concepts.
Chapter 9 Collecting Data with Forms. A form on a web page consists of form objects such as text boxes or radio buttons into which users type information.
INTRODUCTION TO WEB DATABASE PROGRAMMING
Computer Concepts 2014 Chapter 7 The Web and .
Chapter 16 The World Wide Web. 2 Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Write basic HTML.
Chapter 7 The Web and 1.
Creating a Basic Web Page
MIS 301 Information Systems in Organizations Dave Salisbury ( )
Chapter 16 The World Wide Web Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Describe several.
Chapter 16 The World Wide Web. 2 The Web An infrastructure of information combined and the network software used to access it Web page A document that.
Web Design ITM 2010 Tutorial 1 Prepared by Wang Shiyu.
Adapted from Computer Concepts, New Perspectives, Thompson Course Technology EDW 647: The Internet Dr. Roger Webster & Dr. Nazli Mollah 24 Cookies: What.
Computer Concepts – Illustrated 8th edition
10 Adding Interactivity to a Web Site Section 10.1 Define scripting Summarize interactivity design guidelines Identify scripting languages Compare common.
NASRULLAH KHAN.  Lecturer : Nasrullah   Website :
HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS.
Review for Test Chapter 6-7. The most common extension for a web page is: http html pdf abc.
HTML. Principle of Programming  Interface with PC 2 English Japanese Chinese Machine Code Compiler / Interpreter C++ Perl Assembler Machine Code.
1 World Wide Web Concepts (Chapter 18) 인공지능연구실. 2 목 차  Elements of the Web  Web Browsers  Keeping Tracking of your Favorite Web sites  Security and.
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
1 Chapter 01: Introduction by Tharith Sriv. This course covers the following topics:  Hypertext Markup Language (HTML)  Cascading Style Sheets  JavaScript.
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
Chapter 1 Introduction to HTML, XHTML, and CSS HTML5 & CSS 7 th Edition.
Introduction to the World Wide Web & Internet CIS 101.
Computer Concepts 2014 Chapter 7 The Web and .
Web Page Programming Terms. Chapter 1 Objectives Describe Internet and Understand Key terms Describe World Wide Web and its Key terms Identify types and.
HTML PROJECT #1 Project 1 Introduction to HTML. HTML Project 1: Introduction to HTML 2 Project Objectives 1.Describe the Internet and its associated key.
1 Chapter 1 INTRODUCTION TO WEB. 2 Objectives In this chapter, you will: Become familiar with the architecture of the World Wide Web Learn about communication.
Chapter 7 The Web and .
Section 10.1 Define scripting
DHTML.
Web Programming Language
Distributed Control and Measurement via the Internet
Tonga Institute of Higher Education IT 141: Information Systems
Project 1 Introduction to HTML.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Section A: Web Technology
Web Site Development and Macromedia Dreamweaver 8
Web Concepts Lesson 2 ITBS2203 E-Commerce for IT.
WWW and HTTP King Fahd University of Petroleum & Minerals
4.01B Authoring Languages and Web Authoring Software
Chapter 1 Introduction to HTML.
Warm Handshake with Websites, Servers and Web Servers:
Chapter 7 The Web and .
Project 1 Introduction to HTML.
Introduction to XHTML.
Unit 2, Lesson 5 Website Development Tools
Microsoft Office Illustrated
Section 10.1 YOU WILL LEARN TO… Define scripting
Unit 2, Lesson 5 Website Development Tools
4.01B Authoring Languages and Web Authoring Software
Chapter 27 WWW and HTTP.
Tonga Institute of Higher Education IT 141: Information Systems
Web Page Concept and Design :
Tonga Institute of Higher Education IT 141: Information Systems
Chapter 16 The World Wide Web.
An Introduction to HTML Pages
Web Programming : Building Internet Applications Chris Bates CSE :
Presentation transcript:

Web Pages, Web Sites, and E-commerce CHAPTER 6 Web Pages, Web Sites, and E-commerce

Chapter Contents Section A: Web Technology Section B: Basic Web Page Authoring Section C: Web Page Extensions, Scripts, and Programs Section D: E-commerce Chapter 6: Web Pages, Web Sites, and E-commerce

Section A: Web Technology The Web, the Net, and Hypertext HTML and XHTML Web Browsers Helper Applications, Plug-ins, and Players HTTP Web Servers Cookies Chapter 6: Web Pages, Web Sites, and E-commerce

The Web, the Net, and Hypertext The Web is an interlinked collection of information A hypertext is a group of interlinked files Hypertext link An HTML document is one way to store data for a Web page HTML tags (most come in pairs) Chapter 6: Web Pages, Web Sites, and E-commerce

The Web, the Net, and Hypertext Web browsers and Web servers exchange HTTP messages. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

HTML and XHTML HTML is a markup language containing special instructions HTML is not a case sensitive language World Wide Web Consortium (W3C) developed and revises HTML specifications XHTML is the follow-up version to HTML 4 HTML tags are enclosed in angle brackets Self-closing tags Formatting tags, link tags, media tags, and operational tags Chapter 6: Web Pages, Web Sites, and E-commerce

HTML and XHTML Chapter 6: Web Pages, Web Sites, and E-commerce

HTML and XHTML Most browsers include a menu option for viewing an HTML source document and the HTML tags it contains. This example illustrates how to view source HTML while using Internet Explorer. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Web Browsers Help you access Web pages Upgrade to new browser versions as they become available Popular browsers include: Netscape Navigator Internet Explorer Opera Firefox Chapter 6: Web Pages, Web Sites, and E-commerce

Helper Applications, Plug-ins, and Players Helper applications extend the browser’s ability to work with file formats A plug-in is a type of helper application A player is any helper application or plug-in that helps a browser display a particular file format Chapter 6: Web Pages, Web Sites, and E-commerce

HTTP HTTP messages flow between a browser and a Web server. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Web Servers Includes HTTP software to fulfill HTTP requests Server farms can handle thousands of requests each second Excessive demand can crash a Web server HTTP uses port 80 Chapter 6: Web Pages, Web Sites, and E-commerce

Cookies Small chunk of data generated by a Web server and stored on your computer’s hard disk and can be used later Fix problems caused by HTTP’s stateless protocol Relatively safe Your computer does not have to accept cookies, but it may affect your ability to do things online, such as making purchases Chapter 6: Web Pages, Web Sites, and E-commerce

Section B: Basic Web Page Authoring Web Page Authoring Tools Basic Web Page Components Formats, Styles, and Style Sheets Web Page Graphics, Sound, and Animation Links, Buttons, and Hot Spots HTML Forms Tables and Frames Testing and Posting Web Pages Chapter 6: Web Pages, Web Sites, and E-commerce

Web Page Authoring Tools Text editor Must save files as .htm or .html Similar to a word processor HTML conversion tool Web authoring software Microsoft FrontPage Macromedia Dreamweaver Chapter 6: Web Pages, Web Sites, and E-commerce

Basic Web Page Components Head section Body section Web page header Chapter 6: Web Pages, Web Sites, and E-commerce

Formats, Styles, and Style Sheets HTML formatting tags Cascading style sheet (CSS) Acts as a template for one or more Web pages Chapter 6: Web Pages, Web Sites, and E-commerce

Web Page Graphics, Sound, and Animation CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Web Page Graphics, Sound, and Animation CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Links, Buttons, and Hot Spots HTML for a link specifies a destination and a label Labels can be text or graphical Internal link External link Intrapage link mailto link Image maps are images with clickable areas Hot spots Broken links are nonfunctioning links Chapter 6: Web Pages, Web Sites, and E-commerce

Links, Buttons, and Hot Spots Chapter 6: Web Pages, Web Sites, and E-commerce

HTML Forms Series of fill-in blanks creating using HTML tags Information entered into a form can be processed by a CGI or ASP script on the Web server Chapter 6: Web Pages, Web Sites, and E-commerce

Tables and Frames A Web page table is a grid of cells that can be used as a layout tool Easy to create Flexible Chapter 6: Web Pages, Web Sites, and E-commerce

Tables and Frames Expert Web designers suggest using frames sparingly and making sure that frames close when linking to other sites. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Testing and Posting Web Pages Test each page locally Transfer pages to a Web server Test all pages and links Update your site to keep it current Chapter 6: Web Pages, Web Sites, and E-commerce

Section C: Web Page Extensions / Scripts / Programs DHTML XML and XSL JavaScript and VBScript Java Applets ActiveX Controls Chapter 6: Web Pages, Web Sites, and E-commerce

DHTML Combination of HTML tags, CSS, and scripts DHTML effects usually activate as a result of a mouseover. In this example, moving the mouse over the Chapter 4 button changes the color of the button and displays a pop-up overview of the chapter. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

XML and XSL XML (eXtensible Markup Language) is a method for putting structured data into a text file using tags and attributes DTD (Document Type Definition) files contain the tags used in XML file XSL (eXtensible Stylesheet Language) is used to control the display of data in an XML document Chapter 6: Web Pages, Web Sites, and E-commerce

JavaScript and VBScript Scripts instruct the browser to perform specific actions or respond to specific user actions JavaScript and VBScript are the most popular scripting languages Scripts can either run on the client (client-side script) or the server (server-side script) Chapter 6: Web Pages, Web Sites, and E-commerce

JavaScript and VBScript Scripting errors occur when a browser or server cannot execute one or more statements in a script Chapter 6: Web Pages, Web Sites, and E-commerce

Java Applets Small Java applications Chapter 6: Web Pages, Web Sites, and E-commerce

Java Applets They cannot open, modify, delete, or create files on your computer They cannot make any network connections except to the originating site They cannot start other programs Chapter 6: Web Pages, Web Sites, and E-commerce

ActiveX Controls Compiled computer program that can be referenced from within an HTML document Installed on computer’s hard disk Designed only for the Windows platform Chapter 6: Web Pages, Web Sites, and E-commerce

ActiveX Controls Most ActiveX controls are safe Contain digital certificate Digital certificates are obtained through a certificate authority Chapter 6: Web Pages, Web Sites, and E-commerce

Section D: E-commerce E-commerce Basics Online Shopping Shopping Carts Transaction Privacy and Security Chapter 6: Web Pages, Web Sites, and E-commerce

E-commerce Basics Business transactions conducted electronically over a computer network B2C (business-to-consumer) C2C (consumer-to-consumer) B2B (business-to-business) B2G (business-to-government) Chapter 6: Web Pages, Web Sites, and E-commerce

E-commerce Basics Enhances traditional business models Styles of online advertisements Banner ad Pop-up ad Click-through rate Ad-blocking software prevents ads from appearing on screens Chapter 6: Web Pages, Web Sites, and E-commerce

Online Shopping In a typical shopping session, you connect to an online storefront and use navigation controls to browse through the merchant’s catalog. As you browse, you can drop items into your electronic shopping cart. At the checkout counter, you enter the information necessary to pay for the items you selected. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Shopping Carts Chapter 6: Web Pages, Web Sites, and E-commerce

Shopping Carts Chapter 6: Web Pages, Web Sites, and E-commerce

Transaction Privacy and Security Web sites can surreptitiously collect data about your browsing and purchasing habits Spyware surreptitiously gathers information Ad-serving cookies track your activities at any site containing banner ads from a third party Clear GIFs can set cookies to third party sites Chapter 6: Web Pages, Web Sites, and E-commerce

Transaction Privacy and Security Packet sniffers monitor data as it travels over networks You should use a secure connection when involved in an electronic transaction SSL (Secure Sockets Layer) S-HTTP (secure HTTP) Chapter 6: Web Pages, Web Sites, and E-commerce

Transaction Privacy and Security Merchant databases may be accessed without authorization Dishonest employees Fake storefronts may be used to collecting data Enter URLs correctly Hackers may be able to steal credit card numbers from your hard disk Chapter 6: Web Pages, Web Sites, and E-commerce

Transaction Privacy and Security An electronic wallet can transfer your billing and shipping information to a participating site’s e-commerce Web server when you check out. CLICK TO START Chapter 6: Web Pages, Web Sites, and E-commerce

Transaction Privacy and Security Person-to-person payments are an alternative to credit cards The payment service is the only entity that sees your credit card number Service is in its infancy Chapter 6: Web Pages, Web Sites, and E-commerce

Web Pages, Web Sites, and E-commerce CHAPTER 6 COMPLETE Web Pages, Web Sites, and E-commerce