Instructions for creating a template in MS Frontpage

Slides:



Advertisements
Similar presentations
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Advertisements

CSS The basics { }. CSS Cascading Style Sheets - language used to – describe html appearance & formatting Style Sheet - file that describes – how html.
CSS Link Styling. The Anchor Element: Link text between the opening and closing can be styled using CSS. Some of the properties that can be set are: font-family,
End User Computing An Introduction to CSS Sujana Jyothi Research Lab1, Callan Building, Department of Computer Science
Web Colors. Web Colors Using CSS Thus far, we have set our text and background colors using actual color names, such as:.example { background-color: gray;
4.01 HTML, CSS and Color. Introduction This presentation includes the following topics: Additive color theory Color Names RGB Colors Hex Colors.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Design, Formatting, CSS, & Colors 27 February, 2011.
Lecture 5. CSS 2 What style will be used when there is more than one style specified for an HTML element? Generally speaking we can say that all the styles.
Design, Formatting, CSS, & Colors September 9, 2010.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
4.01 Cascading Style Sheets
Contains 16,777,216 Colors. My Car is red My Car is red How do I add colors to my web page? Notepad Browser Works with the “Standard” colors: Red, Green,
Hexadecimal Dk Izzati Pg Haji Ahmad.
© Maths Support Service 2007 Binary and Hexadecimal Numbers Next Slide AE98FD AE98FD.
Web Design Dreamweaver Semester 2 ATBs. ATB #1 What is a web site?
Web Technologies COMP6115 Session 2: Planning, Designing, Constructing and Testing Static Web Sites Dr. Paul Walcott Department of Computer Science, Mathematics.
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.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 3 Key Concepts 1 Copyright © Terry Felke-Morris.
Post-Module CSS BTM 395: Internet Programming. Web browser usability and compatibility Web standards are a goal, but support for standards is a moving.
1 Working with Cascading Style Sheet (CSS) (contd.)  What we will cover… 1. Color (decimal and hexadecimal representation) 2. Floating elements 3. Styling.
Chapter 12 Cascading Style Sheets: Part II The Web Warrior Guide to Web Design Technologies.
Introduction To CSS.. HTML Review What is HTML used for? Give some examples of formatting tags in HTML? HTML is the most widely used language on the Web.
 This presentation introduces the following: › 3 types of CSS › CSS syntax › CSS comments › CSS and color › The box model.
Web Colors. Web Colors: Up until now, we have been using only pre- defined color names, such as "orange" and "lightblue". As web designers, we need the.
Colors. Color of HTML Elements You can control the color of the following elements: You can control the color of the following elements: All text within.
Applying Color in CSS Web Design – Sec 4-5 Part or all of this lesson was adapted from the University of Washington’s “ Web Design & Development I ” Course.
The Hexadecimal Number System and Memory Addressing ISAT 121.
# Red Green Blue Digital Color RGB to HEX.
XHTML Formatting font with a style declaration. Formatting Font HTML uses the font tag to change size and family of font But… the font tag is being deprecated.
12/20/20151 Color Fall, 2010 Modified by Linda Kenney 10/26/10.
Computer Science and Software Engineering© 2014 Project Lead The Way, Inc. Bits and Bytes.
Macros, Templates & CSS  Macros are used to record a series of keystrokes so that, for example, your name and address can be added to the top of the.
Spiderman ©Marvel Comics Creating Web Pages (part 1)
PART TWO Electronic Color & RGB values 1. Electronic Color Computer Monitors: Use light in 3 colors to create images on the screen Monitors use RED, GREEN,
Your HTML website creating your first html file. Creating an HTML FIle Open note pad from accessories, programs. Write code. Save and view. In 3 Steps.
Review session for Web development. Today’s class Review the web designing. Filling out instructor evaluation form.
Dr. Nermin Hamza 1. Materials Book: Digital Design 4 th M. Morris Mano and Michael D. Ciletti 2.
Introduction To CSS. Lesson 1: History of CSS CSS was proposed in 1994 as a web styling language. To helps solve some of the problems HTML 4. There were.
How to create a Radio button for a form in HTML 5 with CSS styling By Elke Dunn.
Web Colors.
CSS Nick Sims.
HTML5 and CSS3 Illustrated Unit D: Formatting Text with CSS
4.01 HTML, CSS and Color.
Hexadecimal Sweet Sixteen!.
4.01 Cascading Style Sheets
Web Development & Design Foundations with HTML5 8th Edition
Week 2: Introduction to Design and CSS
From now on you are the Creator,
4.01 HTML, CSS and Color.
U2L4 Encoding Color Images
HTML Basics and CSS style
Web Development & Design Foundations with HTML5
Essentials of HTML.
Web Colors.
Information in Computers
Essentials of HTML.
Intro to CSS Mr. Singh.
>> Dynamic CSS Selectors
5.2.3 Be able to use HTML and CSS to construct web pages
Javascript Game Assessment
INFO/CSE 100, Spring 2005 Fluency in Information Technology
Training & Development
Tutorial 3 Working with Cascading Style Sheets
CSS Styles Introduction.
Please bookmark your URL
Web Colors.
4.01 HTML, CSS and Color.
Creating a Business Letter
One Set of Styles Connected to As Many Pages as You Want!!!
Presentation transcript:

Instructions for creating a template in MS Frontpage Go to: Format Theme

Instructions for creating a CSS (Cascading Style Sheet) in Frontpage Go to: File (make 2 pages) New More page templates then Style Sheets (choose a style)

Format – Style Sheet Links Add (your page to the style CSS continued Save the CSS page Click on your web page Format – Style Sheet Links Add (your page to the style sheet you saved)

Change the background colour and look at your linked page to see what happens.

Change the h1 (heading 1 colour) and see what happens when you write an h1.

Try using some Hexadecimal code

Info for Geeks - Hexadecimal In mathematics and computer science, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or alternatively a–f) to represent values ten to fifteen. For example, the hexadecimal number 2AF3 is equal, in decimal, to (2 × 163) + (10 × 162) + (15 × 161) + (3 × 160), or 10995.

Info for Geeks - RGB The RGB color model is an additive color model in which red, green, and blue light are added together in various ways to reproduce a broad array of colors. The name of the model comes from the initials of the three additive primary colors, red, green, and blue.