PAGE LAYOUT - 1.  Most HTML elements are defined as block level elements or inline elements.  Block level elements normally start (and end) with a new.

Slides:



Advertisements
Similar presentations
Cascading Style Sheets
Advertisements

Introduction to HTML & CSS
15 LAYOUT Controlling the position of elements Creating site layouts Designing for different sized screens.
HTML: HyperText Markup Language Hello World Welcome to the world!
Cascading Style Sheets: Basics I450 Technology Seminar Copyright 2003, Matt Hottell.
Layout using CSS. Using multiple classes In the head:.important{font-style:italic;}.title{color:red;} In the body: Here's a type of paragraph that is.
Chapter 2 HTML Basics Key Concepts
MIS 425 Lecture 2 – HTML Navigation, Colors, tables and Styles Instructor: Martin Neuhard
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
© 2004, Robert K. Moniot Chapter 6 CSS : Cascading Style Sheets.
16 HTML Tables and Frames Section 16.1 Create a basic table using HTML Define borders Merge cells Align content in tables Section 16.2 Create a frames-based.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
Using HTML Tables.
INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 06: Tables - Spring 2011.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
Define html document byusing Example : Title of the document The content of the document......
Cascading Style Sheet Basics Pepper. Looking at the HTML See the surrounding tags See head, body, paragraph, header See the ending tags See the list.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 2.
Lesson 2 Adding more content to your web page. Thanks to Richard Hudnutt, Luella HS.
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
Cascading Style Sheets Class 2, Lecture 3 Rachel A Ober
>> HTML: Structure Elements. Elements in HTML are either Inline or Block. Block-level Elements – Begins on a new line – Occupy the whole width – Stacks.
ECA 228 Internet/Intranet Design I Intro to Markup.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
1 Web Application Programming Presented by: Mehwish Shafiq.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
DIV, Span, CSS.
HTML.
Course created by Sarah Phillips BBCD Melbourne BAPDCOM Version 1 – April 2013.
UF and College of Medicine Web Pages. UF and Com Web Pages Makes heavy use of CSS Uses Server Side Includes Not the Dreamweaver kind of Templates.
Are You Smarter Than a 5 th Grader? 1,000,000 5th Grade HTML 5th Grade Syntax 4th Grade HTML 4th Grade Syntax 3rd Grade HTML 3rd Grade Syntax 2nd Grade.
CSS Cascading Style Sheets A very brief introduction CSS, Cascading Style Sheets1.
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.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, we’ll cover:  Brief CSS review  Creating sections with the tag  Creating inline.
Chapter 1: Intro to HTML Section 1: HTML Structure Presentation Section 2: Layout of an HTML File Section 3: Working with Lists & Tables Section 4: HTML.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
CASCADING STYLE SHEET CSS. CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem.
HTML Basics Text, Images, Tables, Forms. HTML Structure HTML is comprised of “elements” and “tags” – Begins with and ends with Elements (tags) are nested.
HTML Extra Markup CS 1150 Spring 2017.
Cascading Style Sheets for layout
Organizing Content with Lists and Tables
CSS Layouts: Grouping Elements
Working with Tables: Module A: Table Basics
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
Coding, Testing and Valdating a Web Page
INTRODUCTION TO HTML AND CSS
Cascading Style Sheets for layout
Intro to CSS CS 1150 Fall 2016.
Elements of HTML Web Design – Sec 3-2
Introduction to web design discussing which languages is used for website designing
Intro to CSS CS 1150 Spring 2017.
Laying out a website using CSS and HTML
Fixed Positioning.
Computers and Scientific Thinking David Reed, Creighton University
Using HTML Tables SWBAT: - create tables using HTML
Cascading Style Sheets (Introduction)
INTRODUCTION TO HTML AND CSS
HTML Formatting Text.
HTML 5 SEMANTIC ELEMENTS.
Presentation transcript:

PAGE LAYOUT - 1

 Most HTML elements are defined as block level elements or inline elements.  Block level elements normally start (and end) with a new line, when displayed in a browser. Examples:,,,,, etc.  Inline elements are normally displayed without line breaks. Examples:,,,,, etc.

 Example - Block TE 311: Website Design and Administration This course is intended to teach students how to design pages… Note that this line started on a new line

 Example - Block Block Elements HTML block elements are those that always start on new line Paragraph is a block element This is another paragraph

 Example - Inline Inline Elements HTML inline elements are those that normally display without line breaks unless end of display area reached… This line breaks only if it is longer than available area. This bold sentence will not begin on new line, rather continue on the previous. So is this italic one So is this link as well!

 These are tags used to group content together either to position them somewhere on the page (div) or apply a certain treatment (div,span).  - Defines a section in a document (block- level)  - Defines a section in a document (inline). Usually, is used to span inline elements as opposed to block elements. CSS rules are used to create a visual effect for a span.

 Example - Div tag My Important Heading Note that, the style has applied only to the spanned area Cell one of row one

 Example - Spanning tag My Important Heading Note that, the style has applied only to the spanned area

 Example - Spanning tag This is the first paragraph. Its contents has been justified as set by the surrounding span tag. Everything within the span will be treated with the same style unless overridden by other CSS rules Another paragraph. This also has been justified as dictated by the spanning span

 The most rudimentary means laying out content on a page is by using a basic HTML table.  This was the first means employed to arrange content on the web before the div tag was introduced.

 The most rudimentary means laying out content on a page is by using a basic HTML table.  This was the first means employed to arrange content on the web before the div tag was introduced.

 Example – Using basic table Layout with tables Welcome to Table Page Layout Here is left side of the page. Some content can be placed here Middle section of page. Some content can also go here. This makes up the main display section of your page. Some right pane content of your page. Second left side section. Footer part of the page.

 Example – Table tweaked with style Layout with tables Welcome to Table Page Layout Here is left side of the page. Some content can be placed here Middle section of page. Some content can also go here. This makes up the main display section of your page. Some right pane content of your page. Second left side section. Footer part of the page.