HTML Primer Basics of HTML for those who haven’t used it before.

Slides:



Advertisements
Similar presentations
HTML Basics 1450 Technology Seminar Copyright 2003, Matthew Hottell.
Advertisements

HTML popo.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
How Tags are used to form your Web Page
Chapter 4 Marking Up With Html: A Hypertext Markup Language Primer.
HTML and XHTML Controlling the Display Of Web Content.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
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.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Marking Up With Html: A Hypertext Markup Language Primer
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Basics of HTML.
CpSc 462/662: Database Management Systems (DBMS) (TEXNH Approach) HTML Basics James Wang.
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.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
Chapter 4: Hypertext Markup Language Primer TECH Prof. Jeff Cheng.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Introduction to Computers CS Dr. Zhizhang Shen Chapter 4: Talking.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Exploring the Digital Domain HTML Basics. HTML Hypertext Markup Language Standard (ASCII) text with embedded format codes Most HTML tags are paired Tags.
Going Live with a Basic Web Page Bill Hart-Davidson AIM: billhd30 pfworkshop.
Creating Webpage Using HTML
HTML Codes Miss B.
Chapter 2 Introduction to HTML. Learning Outcomes Describe Hypertext Markup Language (HTML). Introduce HTML syntax. Recognize basic structure of HTML:
HTML,DHTML & Javascript/Session1/1 of 39 Introduction and Basic Tags Session 1 of Using HTML, DHTML & JavaScript.
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,
HTML: Hyptertext Markup Language Doman’s Sections.
4 Chapter Four Introduction to HTML. 4 Chapter Objectives Learn basic HTML commands Discover how to display graphic image objects in Web pages Create.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
HTML ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Web programming Part 1: HTML 由 NordriDesign 提供
HyperText Markup Language. Web Hosting Creating a web site (on a site like iPage) –Buy domain name ( –iPage has registrar (e.g., FastDomain.
Building a Web Page. Create A New Folder  Right click on the desktop and select New / Folder  Name the folder playpen.
1 2/21/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Lists, Fonts, Links, and Preformatted Text.
Introduction to HTML C151 Multi-User Operating Systems.
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
CS 100 Introduction to Web Page Construction and HTML.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Introduction lab1. Suzanne J. Sultan 2 What is HTML? The definition of HTML is Hyper Text Markup Language. HTML is a computer language devised to allow.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
HTML Tags BTT1O. HTML  Documents written in hypertext markup language can be interpreted by all web browsers.  This language lets the web page developer.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Create Your Own Web Page: An Introduction to HTML Instructor: Corey Johnson Assisted by: tba.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
Introduction to Web Authoring Bill Hart-Davidson AIM: billhd30 Session 2
WEBMASTER SKILL SESSION
Online PD Basic HTML The Magic Of Web Pages
HTML Basics.
Marking Up with XHTML Tags describe how a web page should look
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Computers and Scientific Thinking David Reed, Creighton University
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Presentation transcript:

HTML Primer Basics of HTML for those who haven’t used it before.

HTML HyperText Markup Language Like all programming languages, simply a plain text file Unlike other languages, no variables or commands. HTML is merely a way of formatting a document.

Tags Formatting is accomplished through the use of ‘tags’. Tag begins with a less-than sign ( ). Many tags have a ‘begin’ tag and an ‘end’ tag. End tags have same contents as corresponding begin tag, but start with a front slash /) Examples: – … … … … …

Attributes Some tags have key=value pairs known as attributes. They describe or modify what the tag is doing. Examples: – … – …

Format of an HTML Document Entire document enclosed by … Followed by two sections: head and body … By the way, white space of any kind is completely ignored by HTML parser (ie, web browser)

Head Section Contains info about the document. Most common/important: title My HTML Document “My HTML Document” will appear in title bar of Netscape, IE, Opera, etc…

Body Section Contains all text displayed in web browser window. - line break - paragraph break (equivalent to 2 s) … Center-align all contained text … - Set font properties for contained text. Use attributes –color=“…” (color name, or hex number representation) color=“blue” or color=“0000ff” –size=… (either absolute point size, or relative change) size=12 or size=“+4” –face=“…” (name of font type – Courier, Times New Roman) –Use only attributes you want to.

Links We’ve seen these from HW2. … Make contained text link to value of href attribute.

Tables 4 necessary tags to create a table: … –contains entire table … –contains one row of a table … –contains one cell of a table … –contains a table column heading

Table example Name ID Paul 123 Justin 456 Creates following table:

Table Example continued NameID Paul123 Justin456

Lists Three kinds: un-ordered, ordered, definition Ordered: … Creates a numbered list. (ala HW FAQs online)

Lists Unordered … Creates a bulleted list (ala announcements on course webpage)

Lists Definition … Creates a definition list (ala Letter grade  number grade list on course home page) … contains term … contains definition.

Macros Some text is part of HTML itself, so you can’t use it in your document. –special ‘macro’ sequences for this text <  ‘less than’  < >  ‘greater than’  > &  ‘ampersand’  & "  ‘quotes’  “  ‘non-breaking white space’ 

HTML on RCS and CS to make your HTML documents visible to the world, place them in your public_html directory on RCS. Then go to on the CS machines, put your documents in your public.html directory, make sure they’re world-readable, and go to

For more information… (and others)