Putting it all together

Slides:



Advertisements
Similar presentations
Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything Text Lists Other tables Pictures …
Advertisements

HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
CSS Layout Crash Course An Advance CSS Tutorial. Inline vs. Block Many HTML elements have a default display setting of Block. Block elements take up the.
Today CSS HTML A project.
Navigation Bars Level 2 Extended Certificate Unit B12 Doing Business Online.
Web Pages and Style Sheets Bert Wachsmuth. HTML versus XHTML XHTML is a stricter version of HTML: HTML + stricter rules = XHTML. XHTML Rule violations:
Murach’s ASP.NET 3.5/C#, C5© 2008, Mike Murach & Associates, Inc.Slide 1.
Design, Formatting, CSS, & Colors 27 February, 2011.
4.01 Cascading Style Sheets
Working with Cascading Style Sheets. Introducing Cascading Style Sheets Style sheets are files or forms that describe the layout and appearance of a document.
Eat Your Words! Creating webpage Layout. CONTENT The Layout of a Webpage HEADER FOOTER Each of these sections represents a ‘div’ (or divider). By linking.
Designing Your Own Brochure If you are on a tight budget but would like to offer a brochure to market your business you can design one easily on your computer.
SERVER web page repository WEB PAGE instructions stores information and instructions BROWSER retrieves web page and follows instructions Server Web Server.
Geometers Sketch pad. Step 1: Open Sketch pad Use this to select items Use this to draw a point Use this to draw a circle Use this to draw a line Use.
Finishing your site HTML and css 2012 Brian Davison.
 Word doc for you to download › Link at the beginning of class › 10 Questions › Answers to be added inline  Post to Sakai when completed › No resubmits.
Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything › Text › Lists › Other tables › Pictures › …
audio video object Options: controls autoplay Need to define height and width Options: controls autoplay.
Which formula gives you the desired effect? Desired Results ABCD Click on the letter of the correct answer. A is incorrect. The sidebar and main have the.
Course created by Sarah Phillips BBCD Melbourne BAPDCOM Version 1 – April 2013.
Web Design Part I. Click Menu Site to create a new site root.
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.
External Style Sheets Exploring Computer Science – Lesson 3-6.
Coding with HTML/CSS Quiz { } Play as a PowerPoint slideshow for answers.
ACM 262 INTRODUCTION TO WEB DESIGN Week-7 ACM 262 Course Notes.
Coding with HTML {. THE BASICS { What is HTML and how can you use it to make websites?
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.
HTML and Dreamweaver November 11th. Agenda Box Model Displaying and positioning elements – Padding – Margin – Float – Display – Position HTML Demo.
Understanding CSS Cascading Style Sheets control the presentation of content in HTML pages Style Sheets separate formatting from the content –Styles defined.
 Add one element at a time  If it doesn’t do what you want, › Delete it › DON’T just keep piling on more items.
 Create a free account  Verify your address.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
>> CSS Layouts. Recall Properties of Box – Border (style, width, color) – Padding – Margin – Display – Background – Dimension Welcome Padding Area Border.
CHAPTER 15 Floating and Positioning. FLOAT VS. POSITION  Floating an element moves it to the left or right, allowing the following text to wrap around.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
NAVIGATION USING HTML TO SET UP THE BASIC STRUCTURE OF A NAV BAR.
CSS (Cascading Style Sheets). CSS CSS – Cascading Style Sheets – Cascade because of the way CSS rules can stack on top of each other. Allows you to add.
HTML.
FOP: Multi-Screen Apps
Working with Cascading Style Sheets
The Box Model in CSS Web Design – Sec 4-8
Create and edit web pages 4
CSS Layouts: Positioning and Navbars
Google fonts CSS box model
CSS Layouts: Grouping Elements
Professor C. Shilepsky Wells College
Coding, Testing and Valdating a Web Page
Box model.
Cascading Style Sheets (Layout)
Putting Things Where We Want Them
The Box Model in CSS Web Design – Sec 4-8
>> CSS Layouts.
Using CSS.
CSS.
Filezilla problems continuing
COMP 101 Review.
TOPICS Chrome Dev Tools Process for Building a Static Website
Laying out a website using CSS and HTML
Controlling Layout with Style Sheets
CSS Box Model.
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.
Training & Development
BUILDING A WEBSITE 7.4.3: Applying a Layout.
Floating and Positioning
Box Model.
CSS.
Building a website: Putting it all together
CSS and Class Tools.
Multipage Sites.
Positioning Boxes Using CSS
Presentation transcript:

Putting it all together HTML and CSS

Trouble shooting Make sure that the css is connected to the html I like changing the background color to start Format the html and css Easy way to see missing or misplaced end tags Validate the html and css Find problems that prevent correct processing

Practical advice Delete css statements that don’t do what you think Do not keep piling more on Use jsfiddle to understand how things work Better to build your pages in komodo When things get overwhelming, back track Comment out things in html and css until you have something that works Then add them in one by one

Box model Remember you can define each side independently Remember that the width is Margin-border-padding-content-padding-border-margin Use inspect to see what the pieces are Often the problem is that a piece is full width

Selective formatting 3 tools Context class pseudo-elements If your css starts getting complicated, rethink What should the base be and what should you change

float Float only applies to following content Remember to stop floats with clear Often the problem when content goes below an enclosing div Can’t float more than 100% width

Remember you can view files in chrome you need to format and validate all pages To check off all items To go over the check list To Try it on another computer

Class exercise and lab Will put together most of a full website together Lab will be to finish the last few pieces