IPUB 100 Lesson 3 Instructor Mark Lamontagne Review Create html5 page on blackboard. Write a relative link from the index page, for an image called car.jpg.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

Farhan Nisar University of Peshawar
MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
Table, List, Blocks, Inline Style
100 points 200 points 400 points 800 points800 points800 points800 points800 points 1600 points 3200 points.
HTML Basics 1450 Technology Seminar Copyright 2003, Matthew Hottell.
HTML popo.
Introduction to HTML & CSS
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
HTML Lesson 4 Hyper Text Markup Language. Assignment Part 3  Save your last html file as “FirstName3.htm”  Set the title as “FirstName LastName Third.
HTML: HyperText Markup Language Hello World Welcome to the world!
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
HTML Creating Web pages. HTML Hyper Text Markup Language Not programming, but a markup language using tags to format text in Web browsers.
HTML Creating Web pages. HTML Hyper Text Markup Language Not programming, but a markup language using tags to format text in Web browsers.
How Tags are used to form your Web Page
Images, Tables, lists, blocks, layout, forms, iframes
LIST- HYPERLINK- IMAGES
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.
XHTML and CSS Overview. Hypertext Markup Language A set of markup tags and associated syntax rules Unlike a programming language, you cannot describe.
TC 310 The Computer in Technical Communication Dr. Jennifer Turns Week 5, Day 1 (10/28)
XHTML and CSS Overview. Hypertext Markup Language A set of markup tags and associated syntax rules Unlike a programming language, you cannot describe.
Chapter 14 Introduction to HTML
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.
HTML Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
CS105 Introduction to Computer Concepts HTML
IPUB 100 Lesson 2 Instructor Mark Lamontagne Homework Review.
HTML. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language.
Class 3 – Creating Lists In this lesson, you will learn to use HTML to organize your text into lists.
HTML basics exercises.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
Developing Content and Layout Lesson 6. Creating Web Site Content Online users scan a page, read key words of text, and check out graphics Reading from.
HTML Hyper Text Markup Language It is used for describing web documents or web pages. A markup language is set of markup tags. HTML documents are described.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
IS1824: Introduction to Internet Multimedia Lecture 5: Layout in HTML Rob Gleasure
The Language of the Internet. HTML5 Hypertext Markup Language- Fifth iteration Used to create documents containing text, images, and hyperlinks Has Grammar.
IDK0040 Võrgurakendused I harjutus 03: Lists, tables and frames Deniss Kumlander.
HTML Lesson 5 Hyper Text Markup Language. Assignment 4  Create a new HTML page called index.htm and save it in your HTML_Folder  Use the same format.
HTML: Hyptertext Markup Language Doman’s Sections.
Html Tables Basic Table Markup. How Tables are Used For Data Display Tables were originally designed to display and organize tabular data (charts, statistics,
Organization Components (Lists, Table & Frame) Wah Yan College (Hong Kong) Mr. Li. C.P.
HTML Darby Tien-Hao Chang Department of Electrical Engineering National Cheng Kung University.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
1 Web Application Programming Presented by: Mehwish Shafiq.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
Andy Dawson– University College London 1 EABH SUMMER SCHOOL Web Page Construction Andy Dawson Department of Information Studies, UCL.
HTML.
HTML Tags Lesson 2. What are HTML Tags?  Markup tags  Coded instructions that accompany the plain text of an HTML document  Syntax –Left wicket< –Tag.
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.
CSE 409 – Advanced Internet Technology 1 DISCUSSION OF BASIC HTML TAGS.
1 After completing this lesson, you will be able to: Understand the basics of HTML coding. Use HTML tags. Plan an HTML site. Create a table with HTML.
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
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.
Assistant Professor,UCER Naini,Allahabad
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
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
Introduction to HTML Dave Edsall IAGenWeb County Coordinator’s Conference June 30, 2007.
HTML for web designing short course. What is an HTML File? HTML stands for Hyper Text Markup Language An HTML file must have an htm or html file extension.
01 – HTML (1) Informatics Department Parahyangan Catholic University.
HTML Tables Tables are defined with the tag. A table is divided into rows (with the tag), and each row is divided into data cells (with the tag). td stands.
Basic Webpage Design Formatting output using Unordered List and Ordered List tag.
Web Development Part 1.
Organizing Content with Lists and Tables
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
TABLES, LISTS & IMAGES.  Tables are defined with tag.  Table is divided into rows and columns.  Table must have at least one row and one column  Table.
Presentation transcript:

IPUB 100 Lesson 3 Instructor Mark Lamontagne Review Create html5 page on blackboard. Write a relative link from the index page, for an image called car.jpg. The image resides in the images folder of your site. Write an anchor element for Google. Show me how to make the title element bold. Make the text “My Site Name” a heading.

IPUB 100 Lesson 3 Instructor Mark Lamontagne Learning Objective Tables Construct Usage Lists HTML Unordered list HTML Ordered list HTML Definition List

IPUB 100 Lesson 3 Instructor Mark Lamontagne HTML Tables Used to display tabular data (like an excel spreadsheet) Online stores like to use them because they keep the pertinent product data on order. Table design is done through css. The elements of a table are: opening tag table heading table row table cell

IPUB 100 Lesson 3 Instructor Mark Lamontagne HTML Table Header1 Header 2 row 1, cell 1 row 1, cell 2 row 2, cell 1 row 2, cell 2 header1header2 Row1, cell 1row 1, cell 2 row 2, cell 1row 2, cell 2

IPUB 100 Lesson 3 Instructor Mark Lamontagne Exercise Create a table which would represent the image on the right.

IPUB 100 Lesson 3 Instructor Mark Lamontagne Each Product Product-name Product-image Product-details Product-price productname1productname2productname3productname4 product-image1product-image2product-image3product-image4 product-details1product-details2product-details3product-details4 product-price1product-price2product-price3product-price4 productname5productname6productname7productname8 product-image5product-image6product-image7product-image8 product-details5product-details6product-details7product-details8 product-price5product-price6product-price7product-price8

IPUB 100 Lesson 3 Instructor Mark Lamontagne productname1 productname2 productname3 productname4 product-image1 product-image2 product-image3 product-image4 product-details1 product-details2 product-details3 product-details4 product-price1 product-price2 product-price3 product-price4 productname5 productname6 productname7 productname8 product-image5 product-image6 product-image7 product-image8 product-details5 product-details6 product-details7 product-details8 product-price5 product-price6 product-price7 product-price8

IPUB 100 Lesson 3 Instructor Mark Lamontagne Uses of Unordered Lists Making sense out of context. Elements such as and are semantically empty, implying no meaning other than grouping content into blocks. Any meaning they convey is a result of how your CSS influences their display in a visual browser context. By grouping applicable content into lists, it gains meaning via your markup, independent of your stylesheet. User Agents which scan only your content (and ignore your visual CSS), like text browsers, text-to-speech browsers, and even search-bots can understand your list organization and proceed to render (or interpret) it as such.

IPUB 100 Lesson 3 Instructor Mark Lamontagne Unordered List pen paper pencil Pen Paper pencil CodeVisual

IPUB 100 Lesson 3 Instructor Mark Lamontagne exercise Create the html portion a dropdown navigation using a unordered list.

IPUB 100 Lesson 3 Instructor Mark Lamontagne solution text text

IPUB 100 Lesson 3 Instructor Mark Lamontagne Ordered Lists These are sometimes called numbered lists, and list items that have a specific numerical order or ranking. 1 pen 2 pencil 3 crayon Use ordered lists anywhere you want to show a specific order for the list items to be followed, or to rank items sequentially. These lists are most often found in instructions and recipes.

IPUB 100 Lesson 3 Instructor Mark Lamontagne Ordered List pen paper pencil 1.Pen 2.Paper 3.pencil CodeVisual

IPUB 100 Lesson 3 Instructor Mark Lamontagne HTML Definition Lists Coffee - black hot drink Milk - white cold drink Coffee - black hot drink Milk - white cold drink CodeVisual

IPUB 100 Lesson 3 Instructor Mark Lamontagne Questions?