10 Minute University Richard Fisher

Slides:



Advertisements
Similar presentations
Basic HTML Workshop LIS Web Team Spring 2007.
Advertisements

HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
Introduction to HTML CPS470 Software Engineering Fall 1998.
HTML Programming last updated 9/12/05 at 1:30pm HyperText Markup Language Reference: – HTML BasicsHTML Basics An HTML program is a set of paired tags that.
Computer Science 1611 Internet & Web Creating Webpages Hypertext and the HTML Markup Language.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
Creating a Web Page HyperText Markup Language. HTML Documents  Created using any text editor  Notepad  Vi, Pico, or Emacs  If using word-processor,
HTML Lesson 1 TBE 540 Farah Fisher. Prerequisites Before beginning this lesson, the student must be able to… Access web pages and navigate the web Access.
Computer Science 101 HTML. World Wide Web Invented by Tim Berners-Lee at CERN, the European Laboratory for Particle Physics in Geneva, Switzerland (roughly.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
 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.
Chapter 1 XHTML: Part I The Web Warrior Guide to Web Design Technologies.
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.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
Just Enough HTML How to Create Basic HTML Documents.
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-
HTML Codes Miss B.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
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,
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.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
HTML/XHTML By Joaquin Vila. What is HTML? HTML stands for HyperText Markup Language. HTML documents are cross-platform compatible and device-independent.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML – The Basics COE 201- Computer Proficiency. The Internet The World Wide Web ▫Also known as the Web ▫Created in 1989  European Laboratory for Particle.
HTML rev 01/09/2016 Hyper Text Markup Language. HTML -history  Hypertext Markup Language is the main language for creating web pages . It was first.
HTML – The Basics Rebecca Shillingburg
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
HTML Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
Introduction to HTML (Web Design) IT Fundamentals.
Online PD Basic HTML The Magic Of Web Pages
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Elements of HTML Web Design – Sec 3-2
CSCI-235 Micro-Computers in Science
Uppingham Community College
INTRODUCTION TO HTML AND CSS
WEB PAGES: CREATING AND MAINTAINING **
Creating a Home Page in HTML
Introduction to XHTML.
Elements of HTML Web Design – Sec 3-2
COMPUTING FUNDAMENTALS
A guide to HTML.
WEBSITE DESIGN Chp 1
Computers and Scientific Thinking David Reed, Creighton University
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML 12/27/2018.
INTRODUCTION TO HTML AND CSS
Pertemuan 1b
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Document Structure & HTML
Basic HTML Workshop.
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
HTML Basics Mr. Fazzalari.
AN INTRODUCTION BY FAITH BRENNER
Presentation transcript:

10 Minute University Richard Fisher HTML 101 10 Minute University Richard Fisher

HTML Overview HTML HyperText Markup Language 10/1/2001 HTML 101 -- FSA Training

HTML Overview Word Processing: W Y S I S Y G What You See Is What You Get HTML: W Y S L C D T W Y G What You See Looks Completely Different Than What You Get 10/1/2001 HTML 101 -- FSA Training

HTML Overview HTML documents contain HTML TAGS Content (“the words”) HTML Commands (TAGS) HTML TAGS Enclosed in brackets < B > Either upper or lower case Usually come in pairs Second TAG has a / (slash) before it’s command Example of bold TAG: <B> bold text </B> 10/1/2001 HTML 101 -- FSA Training

Sections of HTML Document <HEAD> Heading info goes here </HEAD> <BODY> Body info goes here </BODY> </HTML>

HTML Titles <TITLE> . . . </TITLE> Indicates the title of the document In the Heading section Displays in the browser’s Title Bar 10/1/2001 HTML 101 -- FSA Training

Add Title: Alice’s Palace (Shows on Menu Bar) <HTML> <HEAD> <TITLE>Alice's Palace</TITLE> </HEAD> <BODY> </BODY> </HTML> 10/1/2001 HTML 101 -- FSA Training

Headings Tags <H1> . . . </H1> Browser displays headings in bold font and puts a blank line before and after an HTML heading A first-level heading <H1> is largest Smallest heading is <H6> 10/1/2001 HTML 101 -- FSA Training

Add Text: Welcome All (with H2 Heading) <HTML> <HEAD> <TITLE>Alice's Palace</TITLE> </HEAD> <BODY> <H2>Welcome All</H2> </BODY> </HTML> 10/1/2001 HTML 101 -- FSA Training

Spacing <P> End of paragraph HTML does not recognize spacing unless specified <BR> Carriage break Returns text to left margin <P> End of paragraph blank line and returns text to left margin 10/1/2001 HTML 101 -- FSA Training

Add Text: My name is Alice (with carriage break) <HTML> <HEAD> <TITLE>Alice's Palace</TITLE> </HEAD> <BODY> <H2>Welcome All</H2> My name is Alice <BR> </BODY> </HTML> 10/1/2001 HTML 101 -- FSA Training

Add Text: I live in Dallas (with paragraph break) <HTML> <HEAD> <TITLE>Alice's Palace</TITLE> </HEAD> <BODY> <H2>Welcome All</H2> My name is Alice <BR> I live in Dallas <P> </BODY> </HTML> 10/1/2001 HTML 101 -- FSA Training

Images <IMG SRC=”imagefilename"> <IMG SRC="dallas.gif"> or URL (name and location) of the image <IMG SRC="dallas.gif"> or <IMG SRC=”http://www.myname.com/images/dallas.gif"> 10/1/2001 HTML 101 -- FSA Training

Add Image: <HTML> <HEAD> <TITLE>Alice's Palace</TITLE> </HEAD> <BODY> <H2>Welcome All</H2> My name is Alice <BR> I live in Dallas <P> <IMG SRC="dallas.gif"><BR> </BODY> </HTML> 10/1/2001 HTML 101 -- FSA Training

<A HREF=“….”> hotlink name </A> Links <A HREF=“….”> hotlink name </A> Creates a link to another document or hypermedia file Example <A HREF="http://www.utdallas.edu">UTD</A> 10/1/2001 HTML 101 -- FSA Training

Add Link: I attend college at UTD <HTML> <HEAD> <TITLE>Alice's Palace</TITLE> </HEAD> <BODY> <H2>Welcome All</H2> My name is Alice <BR> I live in Dallas <P> <IMG SRC="dallas.gif"><BR> I attend college at <A HREF="http://www.utdallas.edu">UTD</A> </BODY> </HTML> 10/1/2001 HTML 101 -- FSA Training

HTML Reference Sklar text!!! Bare Bones Guide to HTML Quick Reference Sheet (Reference Room) Bare Bones Guide to HTML http://werbach.com/barebones/ 10/1/2001 HTML 101 -- FSA Training

The End Questions ? Richard Fisher rfisher@fsaservices.com 972-883-2298 10/1/2001 HTML 101 -- FSA Training