COMPUTER PROGRAMMING INTERACTIVE PRESENtation.

Slides:



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

CSS-Formatting Review Cascading Style Sheets addstyle to your HTML web pages.
CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Ideas to Layout Beginning web layout using Cascading Style Sheets (CSS). Basic ideas, practices, tools and resources for designing a tableless web site.
Cascading Style Sheets
CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
/k/k 1212 Cascading Style Sheets Part one Marko Boon
Part 2 Introduction to CSS. CSS Syntax – class selector 1 With the class selector you can define different styles for the same type of HTML element. You.
Making Things Look Nice: Visual Appearance and CSS CMPT 281.
Cascading Style Sheets. CSS stands for Cascading Style Sheets and is a simple styling language which allows attaching style to HTML elements. CSS is a.
Web Pages and Style Sheets Bert Wachsmuth. HTML versus XHTML XHTML is a stricter version of HTML: HTML + stricter rules = XHTML. XHTML Rule violations:
กระบวนวิชา CSS. What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to.
Chapter 8 Creating 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.
Session Objectives What is CSS? Define CSS syntax Learn about the authoring options Add comments to a CSS Defining color in CSS.
Stylin’ with CSS. 2 Topics What is CSS? Why CSS? CSS Examples.
Prepared by ackoo Styli n g your page (font type, font size, colors, text decoration, alignment, set margin, table padding, etc.) References: W3Schools.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
4.01 Cascading Style Sheets
CM143 Week 4 Introducing CSS. Cascading Style Sheets A definition for the style in which an element of the webpage will be displayed Border width, colour,
Styles with Cascading Style Sheets (CSS) Web Design – Section 4-1 Part or all of this lesson was adapted from the University of Washington’s “Web Design.
INTERNAL CSS Casey Ames Different types of CSS There are three different types of CSS: ◦ External CSS ◦ Internal CSS ◦ Inline CSS In this presentation.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Lesson 2 Adding more content to your web page. Thanks to Richard Hudnutt, Luella HS.
Click to begin Click to begin Mr. Thomas CSS Multiple Multiple Choice Fill-In The Fill-In The Blank Fill-In The Fill-In The Blank 10 Points 20 Points.
CSS My favourite ICT lesson By Federico Boschi Cascading Style Sheets.
Working with Cascading Style Sheets (CSS) Module 2: HTML Basics LESSON 5.
Tutorial #3 Cascading Style Sheets. Tutorial #2 Review - Anchors Links to Site DMACC Internal Links Go to Top Mail To me Local.
CSS Basic (cascading style sheets)
CS134 Web Design & Development Cascading Style Sheets (CSS) Mehmud Abliz.
Stylin’ with CSS Monday October 8 th and Tuesday October 9 th.
CSS Tutorial 1 Introduction Syntax How to use style specifications. Styles.
Colors & Fonts Building a Website Lesson 7. Font Font The tag specifies the font face, font size, and color of text. The tag can have any or all of these.
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.
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.
How to… Cascading Style Sheets. How to Insert a Style Sheet When a browser reads a style sheet, it will format the document according to it. There are.
Cascading Style Sheets Chris Vollmer IT 5610 Chatfield Senior High School.
Cascading Style Sheets (CSS) EXPLORING COMPUTER SCIENCE – LESSON 3-5.
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 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.
1 Cascading Style Sheets
WEB FOUNDATIONS CSS Overview. Outline  What is CSS  What does it do  Where are styles stored  Why use them  What is the cascade effect  CSS Syntax.
WebD Introduction to CSS By Manik Rastogi.
CSS.
Cascading Style Sheets (CSS)
4.01 Cascading Style Sheets
Intro to CSS CS 1150 Fall 2016.
Web Development & Design Foundations with HTML5
CASCADING STYLE SHEET CSS.
IS333: MULTI-TIER APPLICATION DEVELOPMENT
Website Design 3
Cascading Style Sheets - Building a stylesheet
Intro to CSS CS 1150 Spring 2017.
Software Engineering for Internet Applications
CS134 Web Design & Development
Stylin’ with CSS.
Introduction to Cascading Style Sheets (CSS)
Working with Cascading Style Sheets (CSS)
Working with Cascading Style Sheets (CSS)
What are Cascading Stylesheets (CSS)?
Tutorial 3 Working with Cascading Style Sheets
Web Design and Development
Web Design & Development
Cascading Style Sheets - Building a stylesheet
Stylin’ with CSS.
4.01 Cascading Style Sheets
Stylin’ with CSS.
Presentation transcript:

COMPUTER PROGRAMMING INTERACTIVE PRESENtation

MANAGING BUILDING WEBSITE USING MICROSOFT FRONTPAGE AND BUILDING WEBSITE USING MICROSOFT FRONTPAGE

TABLE OF CONTENTS : APPLY CASCADING STYLE SHEET PRE-TEST LESSON PROPER POST-TEST CREATE FRAMES AND FRAMESET TUTORTIAL VIDEO

APPLY CASCADING STYLE SHEET

PRE-TEST : 1. What does CSS stand for? Creative Style Sheets Computer Style Sheets Colorful Style Sheets Cascading Style Sheets

2. What is the correct HTML for referring to an external style sheet? <link rel="stylesheet" type="text/css" href="mystyle.css"> <style src="mystyle.css" /> <stylesheet>mystyle.css</stylesheet />

3. Where in an HTML document is the correct place to refer to an external style sheet? In the <body> section At the end of the document In the <head> section At the top of the document

4. Which HTML tag is used to define an internal style sheet? <script> <style> <css>

5. Which HTML attribute is used to define inline styles? font class

6. Which is the correct CSS syntax? body:color=black {body:color=black(body} body {color: black} {body;color:black}

7. How do you insert a comment in a CSS file? /* this is a comment */ // this is a comment // this is a comment // ' this is a comment

8. Which property is used to change the background color? bgcolor: background-color:

How do you add a background color for all <h1> elements? h1 {background-color:#FFFFFF} h1.all {background-color:#FFFFFF} all.h1 {background-color:#FFFFFF}

10. How do you change the text color of an element? fgcolor:

LESSON PROPER : CSS Example : body { background-color:#d0e4fe; } h1 { color:orange; text-align:center; } p { font-family:"Times New Roman"; font-size:20px; }

CLI CK

Post-test : 1. What does CSS stand for? Creative Style Sheets Computer Style Sheets Colorful Style Sheets Cascading Style Sheets

2. What is the correct HTML for referring to an external style sheet? <link rel="stylesheet" type="text/css" href="mystyle.css"> <style src="mystyle.css" /> <stylesheet>mystyle.css</stylesheet />

3. Where in an HTML document is the correct place to refer to an external style sheet? In the <body> section At the end of the document In the <head> section At the top of the document

4. Which HTML tag is used to define an internal style sheet? <script> <style> <css>

5. Which HTML attribute is used to define inline styles? font class

6. Which is the correct CSS syntax? body:color=black {body:color=black(body} body {color: black} {body;color:black}

7. How do you insert a comment in a CSS file? /* this is a comment */ // this is a comment // this is a comment // ' this is a comment

8. Which property is used to change the background color? bgcolor: background-color:

How do you add a background color for all <h1> elements? h1 {background-color:#FFFFFF} h1.all {background-color:#FFFFFF} all.h1 {background-color:#FFFFFF}

10. How do you change the text color of an element? fgcolor:

CREATE FRAMES AND FRAMESETS

LESSON PROPER: EXAMPLE :

<HTML> <HEAD> <TITLE>Great Recipes</TITLE> </HEAD> <FRAMESET ROWS="15%,*"> <FRAME SRC="recipetitlebar.html" NAME=TITLE SCROLLING=NO> <FRAMESET COLS="20%,*"> <FRAME SRC="recipesidebar.html" NAME=SIDEBAR> <FRAME SRC="recipes.html" NAME=RECIPES> </FRAMESET> </HTML>

OUTPUT :

CLI CK

GOOGLE YOUTUBE W3SCHOOL AND MR. RELUBA Thanks to : GOOGLE YOUTUBE W3SCHOOL AND MR. RELUBA

Presented by : Leizle Selda III-1

End of slide press esc.

G R E A T ! ! ! PROCEED TO # : 1 2 3 4 5 6 7 8 9 10

G R E A T ! ! ! PROCEED TO # : 1 2 3 4 5 6 7 8 9 10

T R Y A G A I N ! ! ! PROCEED TO # : 1 2 3 4 5 6 7 8 9 10

T R Y A G A I N ! ! ! PROCEED TO # : 1 2 3 4 5 6 7 8 9 10