Introduction to Web Application Design

Slides:



Advertisements
Similar presentations
Getting Familiar with Web Pages 1 2 The Internet Worldwide collection of interconnected computer networks that enables businesses, organizations, governments,
Advertisements

WeB application development
4.01 How Web Pages Work.
MIS 425 Lecture 1 – HTML Basics and Web Page Design Instructor: Martin Neuhard
Project 1 Introduction to HTML.
CIS101 Introduction to Computing Week 05. Agenda Your questions Exam next week - Excel Introduction to the Internet & HTML Online HTML Resources Using.
Introduction to HTML 2006 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Introduction to HTML 2006 INT197B. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
Introduction to HTML 2004 CIS101. What is the Internet? Global network of computers that are connected and communicate via a series of Protocols Protocols.
HTML Introduction HTML
Topics in this presentation: The Web and how it works Difference between Web pages and web sites Web browsers and Web servers HTML purpose and structure.
1st Project Introduction to HTML.
Chapter 14 Introduction to HTML
CIS101 Introduction to Computing Week 06. Agenda Your questions Excel Exam during second hour Our status after the snow day Introduction to the Internet.
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.
Chapter 1 Introduction to HTML, XHTML, and CSS
The Internet and the World Wide Web. The Internet A Network is a collection of computers and devices that are connected together. The Internet is a worldwide.
1 Session 1: Introduction to HTML Spring Today’s Agenda Cover useful terminology for today’s session HTML, browsers, servers, etc. HTML Tags Get.
NASRULLAH KHAN.  Lecturer : Nasrullah   Website :
HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
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.
Copyright © 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley What did we learn so far? 1.Computer hardware and software 2.Computer experience.
Chapter 1 Introduction to HTML, XHTML, and CSS HTML5 & CSS 7 th Edition.
Present Session III. The Internet is a global system of interconnected computer networks that use the standard Internet Protocol Suite (TCP/IP) to serve.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Introduction to the World Wide Web & Internet CIS 101.
Session 1: Introduction to HTML Fall Today’s Agenda Talk about the functions of the Internet Cover useful terminology for today’s session HTML,
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Information Networks. Internet It is a global system of interconnected computer networks that link several billion devices worldwide. It is an international.
Web Page Design The Basics. The Web Page A document (file) created using the HTML scripting language. A document (file) created using the HTML scripting.
U NIT 9 Level 2 Web Design. What does HTML stand for? HTML stands for Hypertext Markup Language and it is the language used by all web pages. It consists.
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.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
4.01 How Web Pages Work.
Getting Started with HTML
Getting Started With HTML
4.01 How Web Pages Work.
Online PD Basic HTML The Magic Of Web Pages
Web Basics: HTML/CSS/JavaScript What are they?
4.01 How Web Pages Work.
Tonga Institute of Higher Education IT 141: Information Systems
Chapter 10: Web Basics.
CISC103 Web Development Basics: Web site:
Chapter 1 Introduction to HTML.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Introduction to Computers
Project 1 Introduction to HTML.
CISC103 Web Development Basics: Web site:
Basic HTML PowerPoint How Hyper Text Markup Language Works
Tonga Institute of Higher Education IT 141: Information Systems
Introduction to Web Page Design
HTML HYPERTEXT MARKUP LANGUAGE.
WEB PAGE AUTHORINHG AND DESIGNING
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
Tonga Institute of Higher Education IT 141: Information Systems
How the Web Works 2/19/2019.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
An Introduction to HTML Pages
Introduction to Web Application Design
4.01 How Web Pages Work.
WJEC GCSE Computer Science
4.01 How Web Pages Work.
Presentation transcript:

Introduction to Web Application Design 4/7/2019

Objectives Where do you begin? Components of web application User interface design Development of the logic Adding style/look and feel HTML5 (Hyper text markup language) CSS (cascading style sheets) JS (javascript) Lets create a simple web page All you need is an editor: lets pick notepad++ And a browser to view your web application: Lets pick Google Chrome 4/7/2019

The Internet Here is the definition from Wikipedia: The Internet is the global system of interconnected computer networks that use the Internet protocol suite (TCP/IP) to link billions of devices worldwide. It is a network of networks that consists of millions of private, public, academic, business, and government networks of local to global scope, linked by a broad array of electronic, wireless, and optical networking technologies. The Internet carries an extensive range of information resources and services, such as the inter-linkedhypertext documents and applications of the World Wide Web (WWW), electronic mail, telephony, and peer-to-peernetworks for file sharing. 4/7/2019

The Web The web (or world wide web) is an application that runs on the Internet. One of the ways information can be shared over the Internet. It allows documents (containing information) to be linked via hypertext link It commonly uses a protocol called Hyper Text Transfer Protocol (HTTP: also the prefix for most links) More recently HTTPS: HTTP Secure for accessing web pages that require authentication 4/7/2019

Web Servers Web servers are computers that host or “store” the web documents. Each device connected to the Internet has an address called the IP address. Web server has an IP address that is usually codified into a meaning sequence of words: http://www.amazon.com http://www.castor.cse.buffalo.edu has an IP address of 128.205.36.29 4/7/2019

Web Browser The information server up by a web server is consumed/processed by a web browser. Web browser is an application that runs on the Internet. Examples of web browser are: Internet Explorer, Mozilla Firefox, Google Chrome 4/7/2019

Basic Elements of Web Application webpage Web browser Firefox, Safari .html file Style files displays interprets image and audio files Prepare/edit files

HTML 4/7/2019

Required Tags Every Web page is composed of a head and a body There are three HTML tags required for every Web page: <head> and </head> enclose the head <body> and </body> enclose the body <html> and </html> to enclose those two parts

Required Tags <head> <title>Starter </title> other stuff goes here…that will come later </head> The head section contains the beginning material like the title and other information that applies to the whole page

Required Tags <body> the main content of the page goes here </body> The body section contains the content of the page. All of these tags are required

Configure Your Computer for Writing HTML Check that two programs are installed: A browser (check for Google Chrome) A text editor (Notepad++ for Windows or Text Wrangler for Macs) Both programs are free

Hello, World! To produce your first HTML page, follow these instructions: In your text editor, open a New document instance. Carefully type in your text head, body and all Remove the preliminary material goes here nothing will replace it, yet Replace the main content of the page goes here with: <p>Hello, World!</p> Save the file as starterPage.html Open the file with the browser

Open with Double-Click As HTML is written, files must be opened in two applications: the text editor, to make changes the browser, to see the changes made Double-click on the file to open it with the default application (your browser)

Save This Page All HTML files have the same structure as the starterPage.html file just created Use it as a template for future HTML coding Set up a new folder to keep your HTML files in Using your new page as a template ensure that all pages will have the correct form

Headings in HTML <h1> and </h1> level one Documents tend to have headings, subheadings HTML provides several levels of heading tags: <h1> and </h1> level one <h2> and </h2> level two … <h6> and </h6> level six Headings display content on a new line Headings are bold and go lower in size as the level number increaes.s.

HTML Format Versus Display Format HTML source code tells the browser how to produce the formatted page based on the meanings of the tags The source’s form is unimportant HTML is written in a structured format to make it easier for people to understand Indenting is frequently used to emphasize the tags’ meanings

Summary Lets “author” or write a simple web page and “browse” it Today we will use Notepad++ and Chrome We studied some simple HTML tags and how to write a simple web page