Tepp Räisänen Liike/OAMK 2011

Slides:



Advertisements
Similar presentations
Copenhagen, 6 December 2004 Modern CSS Principles Miruna Bădescu Finsiel Romania.
Advertisements

XHTML Week Two Web Design. 2 What is XHTML? XHTML is the current standard for HTML Newest generation of HTML (post-HTML 4) but has many new features which.
Elder L. Lionel Kendrick Of the First Quorum of the Seventy It has been from the beginning and it will be till the end that the natural man will have a.
Cascading Style Sheets
CSS CSS Precise Aesthetic Control. Cascading Style Sheets Though they can be put in HTML header, usually a separate page that the HTML links to Contains.
History Leading to XHTML
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
Using CSS for Page Layout. Types of HTML Elements Block-Level Element –Creates blocks of content e.g. div, h1..h6, p, ul, ol, li, table, form –They start.
Cascading Style Sheets Controlling the Display Of Web Content.
CSS, cont. October 7, Unit 4. Generic Containers Currently, we know how to modify the properties of HTML tags using style sheets But, we can only modify.
Cascading Style Sheets Controlling the Display Of Web Content.
© Ms. Masihi 1.  A web page is created using a language called, Hypertext Markup Language, better known as HTML Code.  HTML is a user friendly language.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
CSS (Cascading Style Sheets): How the web is styled Create Rules that specify how the content of an HTML Element should appear. CSS controls how your web.
Tables Teppo Räisänen LIIKE/OAMK The Role of a Table Tables are quite common in computing systems In XHTML tables are used for presenting tabular.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
XHTML - Basics Teppo Räisänen LIIKE/OAMK Introduction XHTML = eXtensible Hypertext Markup Language Transitional ~ HTML 4.01 Goal: to replace HTML.
Web page - A Web page is a simple text file that contains a set of HTML tags (code) that describe (to the browser) what should go on a web page. It may.
CS134 Web Design & Development Creating a Basic Web Page Exerted from Mehmud Abliz slides.
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.
CA Professional Web Site Development Class 2: Anatomy of a Web Site and Web Page & Intro to HTML.
Lesson 02 // Elements & Attributes. There are different types of elements, but the 2 most important ones are BLOCK and INLINE. Block elements flow from.
XHTML 1.1  Derived from Standard Generalized Markup Language (SGML) of ISO  XHTML concerned primary with content rather than presentation and style 
Lesson 4.
Lecture 2 - HTML and CSS Review SFDV3011 – Advanced Web Development 1.
ECA 228 Internet/Intranet Design I Intro to Markup.
WEB DESIGN AND PROGRAMMING Introduction to XHTML.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
Web Design (12) CSS Introduction. Cascading Style Sheets - Defined CSS is the W3C standard for defining the presentation of documents written in HTML.
Objective: To describe the evolution of the Internet and the Web. Explain the need for web standards. Describe universal design. Identify benefits of accessible.
By Jacob Farnes For CIT-230 Winter  Declares document type  Normal   Depreciated   Legacy 
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
CS134 Web Design & Development Attributes, Lists, Tables, Links, and Images Mehmud Abliz.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
CSS IS A LANGUAGE DESIGNED TO TARGET HTML ELEMENTS AND NODES BY TYPE, CLASS, ID AND VALUE, AND CHANGE THEIR VALUES CSS – change how your HTML looks and.
INT222 – Internet Fundamentals
Chapter 5 pp HTML Elements & Attributes Format Content Or Examples This Text Is A Hyperlink.
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.
Chapter 4 and 5. Objectives Introduce markup: elements and attributes How browsers interpret HTML documents Basic structure of HTML document What do style.
Elements & Attributes. There are different types of elements, but the 2 most important ones are BLOCK and INLINE. Block elements flow from top to bottom.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Fall 2016 CSULA Saloni Chacha
Marking Up with XHTML Tags describe how a web page should look
CSS Layouts: Grouping Elements
Webpage layout using CSS
Elements of HTML Web Design – Sec 3-2
HTML.
Coding, Testing and Valdating a Web Page
Cascading Style Sheets for layout
Programming the Web using XHTML and JavaScript
Intro to CSS CS 1150 Fall 2016.
Elements of HTML Web Design – Sec 3-2
Web Design & Development
Intro to CSS CS 1150 Spring 2017.
Styles and the Box Model
HTML A brief introduction HTML.
Marking Up with XHTML Tags describe how a web page should look
Marking Up with XHTML Tags describe how a web page should look
Structuring Content in a Web Document
Pertemuan 1b
Floating and Positioning
Marking Up with XHTML Tags describe how a web page should look
HyperText Markup Language
Marking Up with XHTML Tags describe how a web page should look
The Internet 10/20/11 CSS Layout
Lesson 2: HTML5 Coding.
Styling Individual Tags
Marking Up with XHTML Tags describe how a web page should look
INTRODUCTION TO WEB DEVELOPMENT
Presentation transcript:

Tepp Räisänen Liike/OAMK 2011 XHTML Elements Tepp Räisänen Liike/OAMK 2011

About the Elements An element consists of Beginning tag Element contents End tag (if not an empty element) Many elements can be used as nested structures Elements have specific roles, e.g. h2 = second-level heading

Empty Elements Some elements are used as empty elements (without any content between tags) The end tag of the element is not written An empty element can be a simple command (<br />) or information can be declader in the attributes ( <img />)

Block Elements vs. Inline Elements Block elements can contain both block & inline elements p, form, table… Inline elements can only contain other inline elements a, b, i… Some elements can be used in both ways applet, button, script

Block Elements vs. Inline Elements Block elements appear within their parent elements: as rectangular objects which do not break across lines; with block margins, width and height properties which can be set independently of the surrounding elements. Conversely, inline elements are treated as part of the flow of document text they cannot have margins, width or height set, and do break across lines.

Attributes Attributes can be used for declaring information about an element An attribute consists of a name and a value The value is written inside quotes and assigned using =-symbol, e.g. alt=”my picture”

Attributes To use attributes one must know the valid attributes for a specific element Only the core attributes are available for all the elements (with a few exceptions): class, id, style, title dir, lang