LBSC 690 Session 5A Programming. Languages How do we learn a language? Learn by listening Then reading Then writing How do we teach programming? Learn.

Slides:



Advertisements
Similar presentations
WeB application development
Advertisements

Website Design.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
XHTML Basics.
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. How to Create Web Pages Using HTML Introduction.
HTML & XHTML Web Publishing. What is HTML? HTML- Hypertext Markup Language ▫Start with text on your page & add special tags ▫These specific tags produce.
CIS101 Introduction to Computing Week 05. Agenda Your questions Exam next week - Excel Introduction to the Internet & HTML Online HTML Resources Using.
CIS101 Introduction to Computing Week 05. Agenda Your questions CIS101 Survey Introduction to the Internet & HTML Online HTML Resources Using the HTML.
CIS101 Introduction to Computing
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 Companion. Lecture Objectives Learn about HTML. Know basic HTML tags.
Developing a Basic Web Page with HTML
SOFTWARE SYSTEMS SOFTWARE APPLICATIONS SOFTWARE PROGRAMMING LANGUAGES.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
CIS101 Introduction to Computing Week 06. Agenda Your questions Excel Exam during second hour Our status after the snow day Introduction to the Internet.
Tutorial 1: Getting Started with HTML5
Internet Skills An Introduction to HTML Alan Noble Room 504 Tel: (44562 internal)
Chapter Lead Black Slide Powered by DeSiaMore Powered by DeSiaMore.
COMPUTER SOFTWARE Section 2 “System Software: Computer System Management ” CHAPTER 4 Lecture-6/ T. Nouf Almujally 1.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
HTML Structure & syntax
Introduction to HTML. HTML Hyper-Text Markup Language: the foundation of the World-Wide Web Design goals:  Platform independence: pages can be viewed.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
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.
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Course Content - Chapter 2 Introduction to HTML Introduction to a Text Editor as a web authoring tool Instructional Activity: Creating a webpage using.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Just Enough HTML How to Create Basic HTML Documents.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Introduction to HTML. Slide 1 Hard-Coding What is hard-coding? –Creating the page in a text editor just using HTML A Web designer should know how to hard-
1 Creating Web Pages Part 1. 2 OVERVIEW: HTML-What is it? HyperText Markup Language, the authoring language used to create documents on the World Wide.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
The Teacher Computing Computer Languages [Computing]
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 5 Information System Software.
HTML: Hyptertext Markup Language Doman’s Sections.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
LBSC 690 Session 5A Programming. Languages How do we learn a language? Learn by listening Then reading Then writing How do we teach programming? Learn.
Web Page Design Introduction. The ________________ is a large collection of pages stored on computers, or ______________ around the world. Hypertext ________.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
JavaScript Defined JavaScript Basics Definitions JavaScript is an object-oriented programming language designed for the world wide web. JavaScript code.
The Web Wizard’s Guide to HTML Chapter One World Wide Web Basics.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
HTML HyperText Markup Language. Text Files An array of bytes stored on disk Each element of the array is a text character A text editor is a user program.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
LBSC 690 Session 4 Programming. Languages How do we learn a language? Learn by listening Then reading Then writing How do we teach programming? Learn.
PART 1: Introduction to HTML & CSS. Lecture 1: HTML 5 Basic Structure.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
McGraw-Hill Technology Education © 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Office Word 2003 Working Together 1 Word 2003 and Your.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Website Source Code Free Download.
Getting Started with HTML
Project 1 Introduction to HTML.
CSCI-235 Micro-Computer Applications
Introduction to XHTML.
HTML HYPERTEXT MARKUP LANGUAGE.
Introduction to HTML Simple facts yet crucial to beginning of study in fundamentals of web page design!
What is HTML?.
HTML Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

LBSC 690 Session 5A Programming

Languages How do we learn a language? Learn by listening Then reading Then writing How do we teach programming? Learn to write first Contributes to programming problems

Programming Languages Programs are written in a programming language. Two types: Procedural and non-procedural (declarative). Are artificial languages.

Artificial Languages Consist of: A set of symbols (an alphabet) A vocabulary Controlled segment (an authority list) A user-defined segment Syntax Semantics

Levels of Languages “Low” to “high” Machine language Lowest level All languages must be translated into this to run on the computer Unique to each platform Next level: Assembler

Levels (Cont’d) Higher Level Languages: Basic, Pascal, C, Fortran, Cobol, Visual Basic, Visual C, etc. Fourth Generation Languages: NOMAD, QBE, etc. Object Oriented Languages: Smalltalk, C++, Java.

Software Tools Facilitate writing programs: Compilers & Interpreters. Software Development Environments.

What is HTML? HyperText Markup Language. Based on Standard Generalized Markup Language (STML). Describes the structure of a document. Not its presentation. Does not describe page layout. Designed to be used cross-platform.

HTML is a Markup Language Start with text and add special tags around words and paragraphs. Tags indicate different parts of a page and produce different effects in the browser. HTML has a given, defined set of tags. Users cannot create their own.

HTML Versions HTML 2.0. Base set of tags. HTML 3.2. Second release. HTML 4.0. Current generation. Includes new features for flexibility. HTML Has corrections for 4.0.

What do HTML Files look like? Contain: Text of page itself, HTML tags indicating page elements, structure, formatting and hypertext links to other pages or to included media. Look at HTML sources. For example, with Netscape use:

Creating Page Use a text editor. Saves files in ASCII format. In Unix, pico is a text editor, In Windows, Notepad and DOS Edit are text editors. View your created page with a browser.

Tags All text and HTML commands require beginning and ending HTML tags: … your page… {The forward slash indicates the end.}. This tag indicates that the content of this file is in HTML.

Tags (Cont’d.) tag: Specifies that the lines in it are prologue, e.g., the title:. tag: Encloses the remainder of the text and other contents (links, pictures, etc). tags are Headings that divide sections of text.(Can be up to 6 levels).

Tags (Cont’d). tags indicate paragraphs. HTML defines five kinds of lists: Numbered lists:. Bulleted or,unordered, lists:. Glossary lists:. Menu lists:. Comments:.

Sources of Help for HTML Specifications: A Beginner’s Guide to HTML: HTMLPrimer.htmlwww.ncsa.uiuc.edu/General/Internet/WWW/ HTMLPrimer.html. Laura Lemay,Teach yourself Web Publishing with HTML 4 in a Week, Fourth Edition,SamsNet Ed Tittel, HTML for Dummies, IDG Books, 1997.

Tags (Cont’d.)