Basic HTML Workshop.

Slides:



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

Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
WeB application development
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
Basic HTML Workshop LIS Web Team Fall What is HTML? Stands for Hyper Text Markup Language Computer language used to create web pages HTML file =
HTML Structure & syntax
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.
Chapter 1 XHTML: Part I The Web Warrior Guide to Web Design Technologies.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
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.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using tags.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Basic HTML PowerPoint How Hyper Text Markup Language Works
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-
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML: Hyptertext Markup Language Doman’s Sections.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
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.
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 Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
HTML Structure & syntax
Week 1: Introduction to HTML and Web Design
HTML Structure & syntax
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML basics
Internet Exploration: HTML Basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
XHTML/CSS Week 1.
HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
INTRODUCTION TO HTML AND CSS
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Basic HTML PowerPoint How Hyper Text Markup Language Works
3.00cs HTML Overview 3.00cs Develop webpages.
Introduction to XHTML.
Internet Exploration: HTML Basics
Elements of HTML Web Design – Sec 3-2
WEBSITE DESIGN Chp 1
Basic HTML PowerPoint How Hyper Text Markup Language Works
3.02D HTML Overview 3.02 Develop webpages.
Basic HTML and Embed Codes
Introduction to Web & HTML
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
Intro to Web Development HTML Structure
INTRODUCTION TO HTML AND CSS
Introduction to HTML5.
Ground to Roof HTML/HTML5
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Pertemuan 1 Desain web Pertemuan 1
The Most Basic HTML Page
3.02D HTML Overview 3.02 Develop webpages.
AN INTRODUCTION BY FAITH BRENNER
HTML Structure & syntax
Web Programming and Design
Creating Web Documents
Presentation transcript:

Basic HTML Workshop

What is HTML? Stands for Hyper Text Markup Language Computer language used to create web pages HTML file = text file containing markup tags such <p> Tags tell Web browser how to display a page Can have either *.htm or *.html file extension Hyper Text Markup Language Hyper Text = “Text with links to other text. Documents written as hypertext contain text that when "clicked on" by the user with a mouse, links to other documents. “ Markup = The printer's marks that indicate how a document is to appear when published. Sometimes also the editor's markings, or a graphical designer's marks to indicate positioning, fonts, styles, etc. in a "comp." HTML file is referring to a text file containing markup tags such <b> which turns text into bold type.

HTML Elements Example: Start tag <p> and end tag </p> Tags are the elements that create the components of a page Tags surrounded by angle brackets < > Usually come in pairs Example: Start tag <p> and end tag </p> Stuff between is called “element content” Tags are not case sensitive New standard is to use lower case Basic components or elements of HTML are called tags.

XHTML Lower case for tags = new standard Preparing for next generation of HTML called XHTML

Your created HTML document <head> <title> …document title… </title> </head> <body> …your page content… </body> </html>

Page Components <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> First line of code Declaration of version of HTML <html>…</html> Container for the document <head>…</head> <title> Title of page </title> <body>…</body> Content of page <html> <head> <title> …document title… </title> </head> <body> …your page content… </body> </html>

Basic Tags Headings Paragraph <h1>…</h1> to <h6>…</h6> Like in Word See example Paragraph <p>… </p> Inserts a line space before and after a paragraph http://library.manoa.hawaii.edu/about/exhibits/index.html

Example of use of Heading

Paragraph example

Link Tag Anchor tag <a>…</a> 3 kinds Link Link to page in same folder Link to page in different folder Link to outside webpage on the Internet.

Example of Anchor Tag 2 components address text in page Address <a href="http://www.hawaii.edu/slis">Go to the LIS home page</a> address text in page 2 components Address Text or description – this is what you see on the page

Image Source Tag Empty tag – no closing tag Components of Img tag <img src="url“ alt = “description of image” /> url = points to location of the image file alt = describes image for screen readers Document relative link means that the computer looks for the image in the same folder as the page itself if you have you image in the same folder as your page – it will look like this If you have all your images in an image folder – you url will look like this Alt component describes the image for screen readers, broken image link or user with slow connection that doesn’t load images

Specify file location Same folder: “pic.gif” Document-relative link Look for image in same folder Different folder named images: “/images/pic.gif” Specify the location of the image file as being in the same folder as the web page or in a different folder

Division Tag <div>…</div> Division or section of document Use to group elements to apply formatting or style Example: all text within div tag will be fuschia <div style="color: #FF00FF"> <h1> Title of section</h1> <p> bla bla bla bla </p> </div> Creates invisible section Whatever content between the 2 div tags can be treated together

Examples of use of Links

Exercise Add a paragraph Add some links Add an image Create 3 divisions

Your session1 HTML document <head> <title> …document title… </title> </head> <body> …your page content… </body> </html>

End Product <html> <head> <title>Caitlin’s Page</title> </head> <body> <div> <a href="index.html>Home</a><br /> <a href="courses.html">Courses</a><br /> <a href="personal.html">Personal</a><br /> </div> <p>Hello my name is Caitlin Nelson and I am writing about myself. Contact info: <a href="http://www.hawaii.edu/slis/webteam">Web Team</a> <img src="palmtree.jpg"alt=”a picture of a palm tree”/> </body> </html>