Spring 2009 Kevin Cole Gallaudet University

Slides:



Advertisements
Similar presentations
HTML popo.
Advertisements

Teppo Räisänen LIIKE/OAMK 2010
Introduction to HTML Lists, Images, and Links. Before We Begin Save another file in Notepad Save another file in Notepad Open your HTML, then do File>Save.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
Hypertext Markup Language (HTML) Created by Sarah Dooley & Amanda Foster Edited and presented by Caroline Hallam September 9, 2014.
HTML (HyperText Markup Language)
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
REEM ALMOTIRI Information Technology Department Majmaah University.
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
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.
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.
The Internet Day 4, 9/8/11 Getting on the Internet
Spring 2009 Kevin Cole Gallaudet University
HTML Structure & syntax
>> HTML: Tags – Hyperlink, Media, Lists
HTML Basics.
Introduction to HTML:.
HTML basics
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
CGS 3066: Lecture 2 Web Development and HTML5
What is HTML? Acronym for: HyperText Markup Language
LAB Work 01 MBA 61062: E-Commerce
Marking Up with XHTML Tags describe how a web page should look
Introduction to basic HTML
HyperText Markup Language
Images in HTML PowerPoint How images are used in HTML
More advanced HTML and CSS
Spring 2009 Kevin Cole Gallaudet University
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Introduction to HTML.
Elements of HTML Web Design – Sec 3-2
HTML.
Intro to HTML Mr. Singh.
CGS 3066: Web Programming and Design Spring 2016
Ordered & Unordered Lists in HTML
HTML Lists CS 1150 Fall 2016.
CS543: WEB APPLICATION PROGRAMMING
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
HTML Images CS 1150 Spring 2017.
COMPUTING FUNDAMENTALS
Basic HTML and Embed Codes
Marking Up with XHTML Tags describe how a web page should look
Putting An Image on Your Web Page
CGS 3066: Lecture 2 Web Development and HTML5
HTML ELEMENTS Ms. Olifer.
Introduction to HTML- Basics
HTML Lists CS 1150 Spring 2017.
HTML Images CS 1150 Fall 2016.
Html.
Introduction to HTML.
Computer communications
Marking Up with XHTML Tags describe how a web page should look
CS3220 Web and Internet Programming HTML and XML Basics
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
Marking Up with XHTML Tags describe how a web page should look
Images in HTML PowerPoint How images are used in HTML
Lesson 2: HTML5 Coding.
Web Programming and Design
Hyperlinks Anchor Tags.
Marking Up with XHTML Tags describe how a web page should look
Images in HTML PowerPoint How images are used in HTML
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

Spring 2009 Kevin Cole Gallaudet University 2009.03.24 Web Design I Spring 2009 Kevin Cole Gallaudet University 2009.03.24

Common mistakes <img ...> is an inline element. It MUST be contained inside a block element. Usually, this means inside a <p>...</p>. <img.../> is a self-closing element. This means there is no </img>. Tags for self-closing elements must be in the form <img .../> not <img ...>. Notice the slash near the end. <img.../> and <area.../> require alternate descriptions for blind users, and devices that cannot display images. Use alt="a description of the image or area" attributes. Anotther common block element is <div>...</div>. I'm fairly confident there are other possibilities as well. Self-closing elements are also called "emtpy" elements, or "stand alone" elements. Other self-closing tags include <br />, <hr />, <meta .../>, <link .../>, <area .../> A blind user will read or hear the alternate description instead of seeing the picture. So make the description clear.

Unordered List ... <ul> ... <li>Go shopping</li> <li>Make dinner</li> <li>Set VCR</li> <li>Do homework</li> </ul> ... Go shopping Make dinner Set VCR Do homework Lists are blocks, and list items are blocks inside of blocks. Notice the matching tags, and the nesting. (Draw the lines connecing the matching tags. They should not cross.) The pattern is: <ul>...<li>...</li>...</ul> with the middle tag pair (the li tags) repeated for each list item.

Ordered List ... <ol> ... <li>Go shopping</li> <li>Make dinner</li> <li>Set VCR</li> <li>Do homework</li> </ol> ... 1. Go shopping 2. Make dinner 3. Set VCR 4. Do homework Using the style sheet, you can change the way it numbers the list items. http://w3schools.com/css/pr_list-style-type.asp has a list of styles that you can apply to your list items.

Other problems File names for web pages: HTML file names end with .html CSS file names end with .css Use letters, numbers, hyphens, underscores, periods. Do NOT use spaces, quotes, apostrophes, parentheses, or other punctuation! Be careful about UPPER CASE (CAPITAL) letters. If your file name has capital letters, then your <a href...> and <img src...> must also have them. Many web browsers, operating systems and other software decide how to handle a file based on the file type (sometimes called the file extension). That is the part of the file name that is after the period. Different computers, and different human languages handle punctuation and spaces in an inconsistent way. When you click on a link that has a space in the file name, look at the URL in the title bar of your browser and try to find the space. Most web servers allow files with the same name, different case. For example: File.html file.html FiLe.html