Server Web Server Pages Client Browser 1 3 2.  HTML can do everything  We will limit our use to defining the content units – NOT formatting  Why? ›

Slides:



Advertisements
Similar presentations
Table, List, Blocks, Inline Style
Advertisements

Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
HTML: HyperText Markup Language Hello World Welcome to the world!
Chapter 2 HTML Basics Key Concepts
HTML / CSS – Basics Why the heck are we doing this?
How Tags are used to form your Web Page
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
 Question: What film character is a good analogy to a computer?  Answer Answer  It is actually a very simple machine: It executes exactly what it.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web.
Server Web Server Pages Client Browser  Office Hours on Thursday › Diane’s are CANCELLED › Belinda will hold 11:00-12:00  Belinda will be teaching.
MR.Mohammed Sharaf al Shareef
 Page structure  Define the content › Text › Headers › Lists › Tables  Minor formatting.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
HTML and XHTML Controlling the Display Of Web Content.
13 February Building a Web Page. HTML Files Two types of information Text Instructions on how to display Instructions are in the form of tags Tags are.
23-Jun-15 HTML. 2 Web pages are HTML HTML stands for HyperText Markup Language Web pages are plain text files, written in HTML Browsers display web pages.
Let me control over my pages: Tables, Frames, and CSS.
Purpose Tags are the key to marking up content on your HTML page. It’s the tags that mark up sections of the page and are defined (aesthetically) on the.
Chapter 14 Introduction to HTML
HTML Introduction DSC340 Mike Pangburn. What is HTML?  HTML: Hyper Text Markup Language  The predominant markup language for web-page design.  A markup.
Web page - A Web page is a simple text file that contains HTML tags (code) that describe what should be displayed on the browser. -The Web browser interprets.
Chapter 4 Fluency with Information Technology L. Snyder Marking Up With HTML: A Hypertext Markup Language Primer.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fluency with Information Technology Third Edition by Lawrence Snyder Chapter.
Creating Content That Looks Great Justin Prevatte (AAMFT & themelogic)
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
Reading & Exam Zeid: Chapter 9: XHTML Essential p Read before EXAM 1 Exam is Monday Oct. 25 th Review on Friday Oct. 22 nd.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
CPT 123 Internet Skills Class Notes Publishing to the Web Session B.
Last week you should have had something that looked like this.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
Cascading Style Sheets Class 2, Lecture 3 Rachel A Ober
HTML: Hyptertext Markup Language Doman’s Sections.
Introduction HTML (Hypertext Markup Language) is used to create document on the World Wide Web. HTML is not a programming language, it is a markup language.
Copyright © Osmosys O S M O S Y SO S M O S Y S D e p l o y i n g E x p e r i e n c e & E x p e r t i s e™ HTML Training.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 2.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
1 Web Application Programming Presented by: Mehwish Shafiq.
Suzanne Sultan1 Line Breaks, Paragraphs, lists Lab3.
 Create a free account  Verify your address.
1 © Netskills Quality Internet Training, University of Newcastle Using Style Sheets in Dreamweaver CS © Netskills, Quality Internet Training, University.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 2.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
Web programming Part 1: HTML 由 NordriDesign 提供
 Look especially at › File Tips and Shortcuts › Student video.
HyperText Markup Language. Web Hosting Creating a web site (on a site like iPage) –Buy domain name ( –iPage has registrar (e.g., FastDomain.
HTML World Wide Web Consortium What does HTML stand for? – – –
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
Take Web Design Presurvey Username: First initial, last name For example, Omar Estrella -> oestrella Password: Same as.
Introduction to HTML C151 Multi-User Operating Systems.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
13 October Building a Web Site. Current events Cherelle Scott.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
 Create a free account  Verify your address.
HTML Tutorial. What is HTML HTML is a markup language for describing web documents (web pages) HTML documents are described by HTML tags Each HTML tag.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
MS Word Taking It To A New Level. You Think You Know Word You all use Word You know common functions: –Select typefaces and sizes –Bold, italics –Save.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
HTML.
Web Basics: HTML/CSS/JavaScript What are they?
Microsoft Word 2013 Part II.
HTML: Pages and Tools.
HTML Basics.
Client-Server Model: Requesting a Web Page
Presentation transcript:

Server Web Server Pages Client Browser 1 3 2

 HTML can do everything  We will limit our use to defining the content units – NOT formatting  Why? › Consistency › Readability  We will use › CSS (cascaded style sheets) for all formatting › PHP SSI (server side includes) for common pieces (headers and footers)

 Page structure  Define the content › Text › Headers › Lists › Tables  Minor formatting

 are special symbols with special meanings  How would you display A < B ?  Suggestions?  < for  & is an escape symbol, handled specially. Always ends with ;  Means that you need a special way to display “&” too: &  Full lists at

 paragraph  headers  divisions  table  image  links  pictures  unordered list  ordered list  definition list  bold  italic  underline  break  line

 Comments  Indentation › Nested parentheses › Multi-line  Line up start and end  Things inside belong one tab over › Single line  Start, content, end on a single line › Komodo will help

 Need to define › Table › Row › Header (optional) › Data › Caption (optional)  Can contain anything › Other tables › Pictures › …

Practice Additional Tutorials ient-Side-Coding/HTML/basics-of- html/page1.html Cheat Sheet: Bare Bones Guide to HTML