ACT102 INTRODUCTION TO WEB DESIGN. Content Padding Border Margin.

Slides:



Advertisements
Similar presentations
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
Advertisements

Web Pages Week 10 This week: CSS Next week: CSS – Part 2.
Cascading Style Sheets
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.
Very quick intro HTML and CSS. Sample html A Web Title.
Part 5 Introduction to CSS. CSS Display - Block and Inline Elements A block element is an element that takes up the full width available, and has a line.
Session 4: CSS Positioning Fall 2006 LIS Web Team.
CIS 1310 – HTML & CSS 6 Layout. CIS 1310 – HTML & CSS Learning Outcomes  Describe & Apply the CSS Box Model  Configure Float with CSS  Designate Positioning.
Unit 20 - Client Side Customisation of Web Pages
Session 4: CSS Positioning Fall 2007 LIS Web Team.
Technologies for web publishing Ing. Václav Freylich Lecture 6.
WEB DESIGN Multimedia and Web. Today’s Objectives  Quick review selector types  Layout and positioning.
Session 4: CSS Positioning Fall 2009 LIS Web Team.
Page Layout & Mobile Web Using columns, grid systems, etc… to layout sites for desktops and mobile.
LING 408/508: Programming for Linguists
Technologies for web publishing Ing. Václav Freylich Lecture 7.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Basics of Web Design 1 Copyright © 2016 Pearson Education, Inc., Hoboken NJ.
Doman’s Sections Information in this presentation includes text and images from
Copyright © Terry Felke-Morris CSS Flow & Positioning 1 Copyright © Terry Felke-Morris.
MySQL and PHP Review CSS. Cascading Style Sheet (CSS) Style sheets are files or forms that describe the layout and appearance of a document. Cascading.
Lesson 03 // Cascading Style Sheets. CSS Stands for Cascading Style Sheets. We’ll be using a combination of Html and CSS to create websites. CSS is a.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Web Design I Spring 2009 Kevin Cole Gallaudet University
Week 8 – Part 2 Page Layout Basics Key Concepts 1.
Cascading Style Sheets (CSS). A style sheet is a document which describes the presentation semantics of a document written in a mark-up language such.
Layout with Styles Castro Chapter 11. Tables vs. CSS You can produce “liquid layouts” (layouts that stretch as the browser is resized) using tables or.
Web Development & Design Foundations with HTML5 7th Edition
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
WEB DEVELOPMENT IMMERSIVE BUILDING PAGE LAYOUTS. 2 Box Model Scaling Positioning Boxes Box Aesthetics HTML 5 Semantic Tags CSS Resets TOPICS GENERAL ASSEMBLYWEB.
Internet Technology Dr Jing LU Updated Dr Violet Snell / Dr Kalin Penev 1 Internet Technology (week 6)  Recap: Validating HTML  Page Layout.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
11/12/2015 Box Model Reed Crouch. 11/12/2015  HTML elements can be considered as boxes. In CSS, the term "box model" is used when referring to layout.
Web Design (12) CSS Introduction. Cascading Style Sheets - Defined CSS is the W3C standard for defining the presentation of documents written in HTML.
Copyright © Osmosys O S M O S Y SO S M O S Y S D e p l o y i n g E x p e r i e n c e & E x p e r t i s e™ CSS Training.
Lecture 2: Cascading Style Sheets (CSS) Instructor: Dr. M. Anwar Hossain.
ACM 262 INTRODUCTION TO WEB DESIGN Week-7 ACM 262 Course Notes.
5 th ed: Chapter 4 4 th ed: Chapter 5 SY306 Web and Databases for Cyber Operations SlideSet #5: Advanced CSS.
Today’s objectives  Announcements  Positioning  Measurement units.
Week 5.  Normal document flow  Affecting document flow with float and position properties using CSS  Using these properties to create layouts.
Nesting and Floating. Nesting and Floating Elements To make our page content appear the way we want, and to make the best use of screen space, we can.
Ch 11 HTML and CSS Web Standards Solutions A Web Standardistas’ Approach.
WebD Introduction to CSS By Manik Rastogi.
Laying out Elements with CSS
CSS HTML and website development.
CSS Layouts: Positioning and Navbars
The Box Model in CSS Web Design – Sec 4-8
Fix the CSS syntax errors below
Webpage layout using CSS
Creating Your Book Review Web Site
Cascading Style Sheets
Cascading Style Sheets (Layout)
Web Development & Design Foundations with HTML5 7th Edition
Chapter 7 Page Layout Basics Key Concepts
Web Development & Design Foundations with HTML5 8th Edition
Web Development & Design Foundations with HTML5
Cascading Style Sheets
Table CSS Create a new CSS called tablestyle.CSS Green Background
MORE Cascading Style Sheets (The Positioning Model)
Cascading Style Sheets
Float Property Elements that seem to “float" on the right or left side of either the browser window or another element are often configured using.
Book / movie report Web design.
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with HTML5
Web Development & Design Foundations with HTML5
Session 4: CSS Positioning
Session 4: CSS Positioning
Positioning Boxes Using CSS
CGS 3066: Web Programming and Design Fall 2019 CSS Extra
Presentation transcript:

ACT102 INTRODUCTION TO WEB DESIGN

Content Padding Border Margin

Left to Right, Top to Bottom

Top left of the page = (0,0)

This is a paragraph to which I have set the width. If the next paragraph fits next to it on the right, it will line up.

This is a paragraph to which I have set the width. However, if the second paragraph is too wide to fit the screen, it will shift down. This is the basic principle of Normal Flow

 Absolute  Relative  Float When you want to do fancier layout, you can position “boxes” or “containers.” By doing this, you interrupt the normal (top to bottom, left to right) flow. You can do this in three ways; Float, Absolute, and Relative.

This is the normal flow of a document; from top to bottom, left to right. When you position “boxes,” the you interrupt the normal (top to bottom, left to right) flow. You can do this in three ways; Absolute, Relative, and Float. This text is floated right. This is the normal… This text is floated right..float {float:right;} HTML CSS

This text is absolutely positioned. This is the normal… This text is absolutely positioned..abs {position: absolute; top: 40px; left: 80;} HTML CSS This is the normal flow of a document; from top to bottom, left to right. When you position “boxes,” the you interrupt the normal (top to bottom, left to right) flow. You can do this in three ways; Absolute, Relative, and Float.

This is the normal flow of a document; from top to bottom, left to right. When you position “boxes,” you interrupt the normal (top to bottom, left to right) flow. You can do this in three ways; Absolute, Relative, and Float. This text is relatively positioned. This is the normal… This text is relatively positioned..rel {position: relative; top: 40px; left: 80;} HTML CSS

Must be in specific order: LVHA (LoVe, HA!) a:link { color : blue ;} a:visited { color : purple ;} a:hover { color : purple ;} a:active { color : blue ;}

a.nav:link { color : pink ;} a.nav:visited { color : red ;} a.nav:hover { color : yellow ;} a.nav:active { color : yellow ;} index page HTML CSS

li { list-style-image : url(“pic.jpg”) ; } body { background-image : url(“pic.jpg”) ; }

My Resume Content goes here HTML

#container #banner #nav#content #footer

home contact My Resume Resume text Copyright info here HTML