Web Design Unit 5.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

Table, List, Blocks, Inline Style
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
CSS-Formatting Review Cascading Style Sheets addstyle to your HTML web pages.
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
HTML Overview - Cascading Style Sheets (CSS). Before We Begin Make a copy of one of your HTML file you have previously created Make a copy of one of your.
Presenter: James Huang Date: Sept. 26,  Introduction  Basics  Lists  Links  Forms  CSS 2.
CHAPTER 7 STYLING CONTENT WITH CASCADING STYLE SHEETS.
© 2004, Robert K. Moniot Chapter 6 CSS : Cascading Style Sheets.
CSS normally control the html elements. Three Ways to Insert CSS There are three ways of inserting a style sheet: External style sheet Internal style.
Web Design with Cascading Style Sheet Lan Vu. Overview Introduction to CSS Designing CSS Using Visual Studio to create CSS Using template for web design.
Introduction to Cascading Style Sheets (CSS) Module 2: HTML Basics LESSON 4.
HTML and Web Page Design Presented by Frank H. Osborne, Ph. D. © 2005 ID 2950 Technology and the Young Child.
Create Unordered and Ordered lists Cascading Style Sheets Insert and align Graphics Image enhancements Background images and site maintenance Working with.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
Web Design is a class created to nurture the minds of high school techies, and introduce those without prior knowledge to the field.
Basics of HTML.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
Robert Vitolo CS430.  CSS (Cascading Style Sheets)  Purpose: To provide a consistent look and feel for a set of web pages To make it easy to update.
Cascading Style Sheets (CSS) 1.  What is CSS?  Why CSS?  How to write a CSS? 2.
Cascading Style Sheets. Defines the presentation of one or more web pages Similar to a template Can control the appearance of an entire web site giving.
Images (1) Three most popular formats – Graphics Interchange Format (GIF) – Joint Photographic Experts Group (JPEG) – Portable Network Graphics (PNG) –
Styling and theming Build campaigns in style. What we'll look at... How a web document is structured How HTML and CSS fit together Tools you will need.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
CHAPTER 1 HTML & HTML5 I อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
CSS Basic (cascading style sheets)
WRT235: Writing in Electronic Environments Basic CSS.
CS 3870/CS 5870 Web Protocols, Technologies and Applications.
Adobe Dreamweaver CS3 Revealed CHAPTER THREE: WORKING WITH TEXT AND IMAGES.
ECA225 Applied Interactive Programming Cascading Style Sheets, pt 1 ECA 225 Applied Online Programming.
© 2011 Delmar, Cengage Learning Chapter 3 Working with Text and Cascading Style Sheets.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Cascading Style Sheets
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
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.
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.
External Style Sheets Exploring Computer Science – Lesson 3-6.
Cascading Style Sheets (CSS) EXPLORING COMPUTER SCIENCE – LESSON 3-5.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
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.
ECA 228 Internet/Intranet Design I Cascading Style Sheets.
LT: I can use CSS to decorate a web page. Do Now: Get your storyboard, and log in to winhome. Write our a list of colors you want in your website. (Minimum.
Cascading Style Sheets (CSS). Learning Objectives To develop an understanding of how CSS can enhance the design of a webpage To create and apply CSS styling.
1 Cascading Style Sheet (CSS). 2 Cascading Style Sheets (CSS)  a style defines the appearance of a document element. o E.g., font size, font color etc…
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.
Cascading Style Sheets Using HTML. What are they? A set of style rules that tell the web browser how to present a web page or document. In earlier versions.
WebD Introduction to CSS By Manik Rastogi.
Introduction to CSS: Selectors
Cascading Style Sheets (CSS)
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
Getting Started with CSS
4.01 Cascading Style Sheets
CSS Layouts: Grouping Elements
>> Introduction to CSS
Web Design Unit 5.
Introduction to web design discussing which languages is used for website designing
CASCADING STYLE SHEET CSS.
Website Design 3
Cascading Style Sheets - Building a stylesheet
Cascading Style Sheets (Introduction)
Cascading Style Sheets (Introduction)
Web Design and Development
Johan Ng and Muhammad Hazzry
Cascading Style Sheets - Building a stylesheet
4.01 Cascading Style Sheets
WJEC GCSE Computer Science
Presentation transcript:

Web Design Unit 5

Announcements 1. Need CS students to shadow next year’s incoming freshmen. 2. Apply for Strive! Feb 2 Field trip; Summer Internship. 16 and older. 3. Video Tech News: 1-3 minutes 3rd: Anthony, Antonio, Nhat, and Mateo 4th: Teresa, Clayton, Mark, Alden

Today’s Lesson Objectives: Complete Storyboard website Create inline styles with CSS Add inline styles to a webpage (today) Create an internal styles sheet with css (Thursday)

Complete Website Include : Paragraph <p> </p> Lists <ul> <li> </li> </ul> (ordered or unordered) Image <img> </img> (pictures) Iframe <iframe> </iframe> (videos) <strong> </strong> (bold) <em> </em> (italized) See Mrs. Reid Biography page under Chrome Browser. Click View – Developer –view source

Overview of CSS CSS stands for Cascading Style Sheets CSS provides the formatting and style for a web page, while html provides the content; There are three methods of inserting styles Inline styles Internal style sheet External style sheet http://www.w3schools.com/html/html_css.asp

Basic format for Style Selector Decloration h1 {color:blue; font_size:12px;} The selector is the element you want to style; each declaration consists of a property and a value The property is the attribute you want to change and each property has a value. To make it more readable you can pu each declaration on a separate line. http://www.w3schools.com/tags/ref_colornames.asp http://w3schools.com/tags/ref_colorpicker.asp

Modify Webpage Pair up in your teams Add the following At least three pictures A variety of emphasized text The background and text colors

Gallery Walk Students provide comments and each computer they visit. Students will use feed back they receive to revise their homepage.

Resources (show) http://www.w3schools.com/css http://www.w3schools.com/tags/ref_colornames.asp http://www.w3schools.com/colors/colors_picker.asp

Cool Animation If you are done with your website, then copy these pages to create animated html files.