Technologies for web publishing

Slides:



Advertisements
Similar presentations
Technologies for web publishing Ing. Vaclav Freylich Lecture 1.
Advertisements

Technologies for web publishing Ing. Václav Freylich Lecture 4.
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.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
Technologies for web publishing Ing. Václav Freylich Lecture 7.
>> Introduction to HTML: Tables. HTML is used to give websites structure 5 Basic Tags Element = Start-Tag+Content+End-Tag Heading Tags [h1-h6] Paragraph.
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.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Technologies for web publishing Ing. Václav Freylich Lecture 3.
HTML.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
HTML IMAGES. CONTENTS IMG Tag Alt Attribute Setting Width and Height Of An Image Summary Exercise.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
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.
TNPW1 Ing. Jiří Štěpánek.  Tags  Marks for elements ▪ Pair ▪ Start and end tag ( Paragraph text ) ▪ Single ▪ Only start tag, according to XHTML 1.0.
Tutorial 1 – Creating Web Pages With HTML
Introduction to HTML.
Chapter 8 Introduction to HTML and Applets
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
Web Development Part 1.
Marking Up with XHTML Tags describe how a web page should look
Organizing Content with Lists and Tables
Computer Fundamentals 2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
Creating a Web Page.
Intro to HTML Mr. Singh.
Lecture 16: Applets & HTML
HTML Formatting.
Lists in HTML PowerPoint How to create lists in HTML
Introduction to Web Site Development
HTML Lists CS 1150 Fall 2016.
WDV 101 Intro to Website Development
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
The Web Warrior Guide to Web Design Technologies
Elements of HTML Web Design – Sec 3-2
Adding Images to Your Web Page
COMPUTING FUNDAMENTALS
Web Design & Development
HTML (HyperText Markup Language)
HTML – Organizing Page Content
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.
Essentials of Web Pages
LESSON 8 Module 2: XHTML Basics Lists.
Basic HTML and Embed Codes
Marking Up with XHTML Tags describe how a web page should look
CGS 3066: Lecture 2 Web Development and HTML5
HTML ELEMENTS Ms. Olifer.
Introduction to XHTML Cont:.
HTML Lists CS 1150 Spring 2017.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Pertemuan 1b
Introduction to HTML.
HTML (HyperText Markup Language)
LESSON 8 Module 2: XHTML Basics Lists.
Marking Up with XHTML Tags describe how a web page should look
Pertemuan 1 Desain web Pertemuan 1
Marking Up with XHTML Tags describe how a web page should look
Johan Ng and Muhammad Hazzry
Lesson 3: Cascading Style Sheets (CSS) and Graphical Elements
COMS 161 Introduction to Computing
Marking Up with XHTML Tags describe how a web page should look
ME 123 Computer Applications I Lecture 38: More on HTML 5/20/03
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

Technologies for web publishing Ing. Vaclav Freylich Lecture 2

Lists Important HTML elements Simple syntax but powerful function For easy and well-arranged text output Frequently used for making the navigation structures TNPW1 - Lecture 2

Unordered lists Unordered list body <ul></ul> List item <li></li> - Visual form is similar in all browser but not standardized Sample code (unordered list with three items): <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> Output: Item 1 Item 2 Item 3 TNPW1 - Lecture 2

Ordered lists Ordered list body <ol></ol> List item <li></li> - Used when the order of list items is important Sample code (ordered list with three items): <ol> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol> Output: Item 1 Item 2 Item 3 TNPW1 - Lecture 2

Definition lists Definition list body <dl></dl> Definition term <dt></dt> Definition description <dd></dd> Unordered list of terms Each term can have a description Definition term and definition description can contain any element (not only the text) TNPW1 - Lecture 2

Definition lists Example <dl> <dt>Term 1</dt> <dd>Description 1</dd> <dt>Term 2</dt> <dd>Description 2</dd> </dl> Output Term 1 Description 1 Term 2 Description 2 TNPW1 - Lecture 2

Images Non-pair element <img /> <img src="button.gif" alt=“Image description" width="117" height="18“ /> The src attribute contains the absolute or relative server path to the image file Parameters height and width and alternate description alt are always required ! We can’t adjust the real image size (file size) by changing the width and height attributes TNPW1 - Lecture 2