What is the box model?

Size: px
Start display at page:

Download "What is the box model?"

Transcription

1 CSS BOX MODEL

2 What is the box model?

3 The CSS box model describes the rectangular boxes that are created for every element in the document tree.

4 The box model components

5 Source: Kindly provided by Hicks Design under Creative Commons License:

6 Margin Can be applied to the outside of elements. Margins create space between the edge of an element and any adjacent elements. p { margin: 5px; }

7 Background-color Sets the background color of an element. p { background-color: #eee; }

8 Background-image Applies a background image to an element. Appears will on top of any background-color. p { background-image: url(a.gif); }

9 Border Specifies the width, color and style of a border that is then added to the outside of an HTML element. p { border: 5px solid red; }

10 Padding Can be applied to the outside of the content area of an element. Creates space between the edge of the element and its content. p { padding: 5px; }

11 Content area Can be given width, height and overflow - depending on the type of box model. p { width: 500px; }

12 Overflow Determines what happens when an element s content is larger than the content box. p { overflow: hidden; }

13 Box model size options

14 There are three different ways that width and height can be applied to boxes.

15 Sized A box is sized when it is given an explicit width or height (eg. pixels or ems)

16 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. Sized (eg. width: 200px)

17 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. Sized (eg. height: 200px)

18 Stretched A box is stretched when it stretches to the full width or height of the parent container or the viewport.

19 Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet dolore magna aliquam erat volut. Ut wisi enim ad minim veniam, quis nostrud exerci tatio. Stretched (eg. width: 100%)

20 Collapsed Collapsed means the width or height shrinks around the content. A box can collapse when width or height are set to auto, or in some cases left undefined.

21 Lorem ipsum dolor sitc amunt Collapsed (eg. width: auto)

22 Lorem ipsum dolor sitc amunt Collapsed (eg. height: auto)

23 Multiple box models

24 Many people assume that there is only one box model, and it is used for all HTML elements.

25 This is not the case! There are actually seven different box models - each with different characteristics.

26 The seven different box models: block box model inline box model inline-block box model table box model table cell box model absolute box model float box model

27 1. Block box model

28 Block box appearance: Block boxes form visually a blocks, they flow down the page in normal flow.

29 Block boxes This is a heading Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet dolore magna aliquam erat volut. Dolor sit amet consect etuer adipi scing elit sed diam nonu nibh euismod tinunt ut laoreet dolore magna aliquam erat magna aliquam.

30 Block box width: By default, block boxes stretch to the width of their containing block or the width of the viewport. Their width can be sized but cannot collapse.

31 Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet dolore magna aliquam erat volut. Ut wisi enim ad minim veniam, quis nostrud exerci tatio. Sized Stretched Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.

32 Block box height: By default, block box heights collapse. Their height can be sized but not stretched.

33 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum eu feugiat nulla facilisis vel illum dolore eu feugiat. Collapsed Duis autem vel eum iriure dolor in hendrerit in. Sized

34 Block box margin: Affects all sides of the box. Margin-collapse occurs when in contact with block level elements above or below. p { } margin: em;

35 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum eu feugiat nulla facilisis vel. Margin collapse Vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla.

36 Block box padding: Can be applied to all sides. Padding is added to the overall width/height of the box. p { } padding: 5px;

37 padding 10px content = 200px 10px Total width = 220px

38 Block box border: Can be applied to all sides. Border width is added to the overall width/height of the box. p { } border: 5px solid red;

39 border 5px content = 200px 5px Total width = 210px

40 Block box overflow: Overflow can be applied to block boxes.the default is overflow value is visible. div { overflow: hidden; }

41 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum eu feugiat nulla facilisis vel illum dolore eu feugiat. Vertical overflow Horizontal overflow

42 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum eu feugiat nulla facilisis vel illum dolore eu feugiat. overflow: visible

43 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum eu feugiat nulla facilisis vel illum dolore eu feugiat. overflow: hidden;

44 overflow: scroll (adds scrollbars to top and side)

45 overflow: auto (adds scrollbars to affected axis)

46 Block box model: Block boxes use an additive model. Padding and border are added to overall width/height.

47 border padding 5px 10px content = 200px 10px 5px Total width = 230px

48 Note: Older versions of Internet Explorer and boxes

49 Win/IE5 uses a different method to set widths and heights for boxes. If padding and border are applied to an element, their measurements are subtracted from the overall width.

50 border padding 5px 10px content set to 200px but will be 170px in IE5 10px 5px Total width = 200px

51 2. Inline box model

52 Inline box appearance: Inline boxes form visually as lines. Width, height and overflow do not apply to inline boxes.

53 Inline boxes This is a heading Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet dolore magna aliquam erat volut. Dolor sit amet consect etuer adipi scing elit sed diam nonu nibh euismod tinunt ut laoreet dolore magna aliquam erat magna aliquam.

54 Inline box width: By default, inline box width collapses. The width cannot be sized or stretched.

55 dolor sit amet consect etuer adipi scin Ansed nibh euismod tinunt laore magna aliquam erat volut nostrud ex Collapsed width

56 Inline box height: By default, inline box height collapses. The height cannot be sized or stretched.

57 dolor sit amet consect etuer adipi scin Ansed nibh euismod tinunt laore magna aliquam erat volut nostrud ex Collapsed height

58 Inline box margin: Can be applied to all sides but only affects content on left and right sides.

59 dolor sit amet consect etuer adipi scin sed nibh euismod tinunt laore magna aliquam erat volut nostrud ex Margin affects sides only

60 Inline box padding: Can be applied to all sides but only affects content on left and right sides.

61 dolor sit amet consect etuer adipi scin sed nibh euismod tinunt laore magna aliquam erat volut nostrud ex Padding affects sides only

62 Inline box border: Can be applied to all sides but only affects content on left and right sides.

63 dolor sit amet consect etuer adipi scin sed nibh euismod tinunt laore magna aliquam erat volut nostrud ex Border affects sides only

64 Inline box overflow: Overflow does not apply to inline elements.

65 Inline box model: Margin, padding and border affect content on either side of inline boxes only.

66 dolor sit amet consect etuer adipi scin S nibh euismod tinunt laa magna aliquam erat volut nostrud ex Border and padding affect sides only

67 3. Inline block box model

68 Inline block box appearance: Inline block boxes appear within lines of text like inline boxes. However, they have width, height, margin, border and padding like a block box.

69 Inline block box Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nibh.

70 Inline block box width: By default, inline block box width collapses. The width can be sized or stretched.

71 Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nibh. Lorem ipsum dolor sit amet consect etuer adipi scing elit Lorem ipsum dolor Collapsed width Sized width sit amet consect etuer adipi scing elit Stretched width

72 Inline block box height: By default, inline block box height collapses. The height can be sized but not stretched.

73 Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nibh. Collapsed height Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nibh. Sized height

74 Inline block box margin: Affects all sides of the box. p { } display: inline-block; margin: em;

75 Lorem ipsum dolor sit amet laite a consect etuer adipi scing elit sedium diam nibh. Margin affects all sides

76 Inline block box padding: Can be applied to all sides. p { } display: inline-block; padding: 5px;

77 Lorem ipsum dolor sit amet laite a consect etuer adipi scing elit sedium diam nibh. Padding affects all sides

78 Inline block box border: Can be applied to all sides. p { } display: inline-block; border: 5px solid red;

79 Lorem ipsum dolor sit amet laite a consect etuer adipi scing elit sedium diam nibh. Border affects all sides

80 Inline block box overflow: Overflow can be applied to inline block boxes. div { display: inline-block; overflow: hidden; }

81 Lorem ipsum dolor sit amet consect more etuer adipi scing elit sed diam nibh. Overflow

82 Inline block box model: Inline block boxes use an additive model. Padding and border are added to overall width/height.

83 4. Table box model

84 Table box appearance: Be default, tables are unlike other box models. Width and height refer to outside of the borders.

85 Table box width: By default, table box width collapses. The width can be sized and stretched.

86 n1 n2 n3 n4 n1 n3 n2 n4 Collapsed width Sized width n1 n3 n2 n4 Stretched width

87 Table box height: By default, table box height collapses. The height can be sized (as long as the size is larger than table cell content) but not stretched.

88 n1 n2 n3 n4 Collapsed height n1 n2 Sized height n1 n2

89 Table box margin: Affects all sides of the box. Margin-collapse occurs when in contact with block level elements above and below.

90 n1 n2 n3 n4 Margin collapse n1 n2 n3 n4

91 Table box padding: Can be applied to all sides. Padding is subtracted from to the overall width/height of the box. Padding is not applied when border-collapse property is applied to table.

92 n1 n2 n3 n4 Table padding n1 n2 n3 n4 Table padding with border-collapse

93 Table box border: Can be applied to all sides. Border width is subtracted from the overall width/height of the box.

94 n1 n2 n3 n4 Table border n1 n2 n3 n4 Table border with border-collapse

95 Table box overflow: Overflow cannot be applied to table boxes - but can be applied to the <tbody> element.

96 Table box model: Padding & border are subtracted from overall width/height.

97 border padding 5px 10px content = 200px 10px 5px Total width = 200px

98 5. Table cell box model

99 Table cell box appearance: Table cells form visually side by side within table rows.

100 n1 n2 Table cell n3 n4

101 Table cell box width: By default, table cell width is collapses. This width can be sized and allowed to stretch. Content such as long words, and replaced elements can override width.

102 n1 n2 Collapsed width n1 n2 Sized width n1 n1 n2 verylongwordhere Stretched width Content can override width

103 Table cell box height: By default, table cell box height collapses. This height can be sized but not stretched.

104 n1 n2 Collapsed height n1 n2 Sized height

105 Table cell box margin: Does not apply.

106 Table cell padding: Can be applied to all sides. Padding is added to the overall width/height of the box.

107 n1 n2 Table cell padding

108 Table cell box border: Can be applied to all sides. Border width is added to the overall width/height of the box. Borders between cells will include space unless cellspacing or border-collapse are applied.

109 n1 n3 n2 n4 Table cell borders n1 n3 n2 n4 Table cell borders with no cellspacing

110 Table cell box overflow: Overflow does not apply.

111 Table cell box model: Table cell boxes use an additive model. Padding and border are added to overall width/height.

112 border padding 5px 10px content = 200px 10px 5px Total width = 230px

113 6. Absolute box model

114 Absolute box appearance: Absolute boxes are removed from flow. Other elements in flow will ignore the absolute box.

115 Left, right, top, bottom: Absolutely positioned boxes are positioned in relation to the nearest parent with position or the viewport (if no positioned parent is present).

116 Absolute box width 1: By default, absolute boxes are set to width: auto which will collapse the boxes width.

117 Lorem ipsum dolor sit Width: auto Model: collapsed

118 Absolute box width 2: By default, absolute boxes are set to left: auto and right: auto which will also collapse the boxes width.

119 Lorem ipsum dolor sit Left: auto Right: auto Model: collapse

120 Absolute box width 3: If both left and right are set to 0 the box is stretched.

121 Lorem ipsum dolor sit Left: 0 Right: 0 Width: auto Model: stretched

122 Absolute box width 4: If left is a value, width is a value and right is auto, the box is sized and offset from the left.

123 Lorem ipsum dolor sit Left: 10px Right: auto Width: 200px Model: sized

124 Absolute box width 5: If right is a value, width is a value and left is auto, the box is sized and offset from the right.

125 Lorem ipsum dolor sit Right: 10px Right: auto Width: 200px Model: sized

126 Absolute box height: Absolute box height works like width.

127 Absolute box margin: Margins can be applied to all sides. Margins push the box away from its position.

128 Lorem ipsum dolor sit Absolute box with no margin Lorem ipsum dolor sit Absolute box with margin

129 Absolute box padding 1: Padding will expand a collapsed or sized box.

130 Lorem ipsum dolor sit Absolute box with no padding Lorem ipsum dolor sit Absolute box with padding

131 Absolute box padding 2: Padding will reduce the width or height of the content area of a stretched box.

132 Lorem ipsum dolor sit Absolute box without padding Lorem ipsum dolor sit Absolute box with padding

133 Absolute box border 1: Border will expand a collapsed or sized box.

134 Lorem ipsum dolor sit Absolute box with border Lorem ipsum dolor sit Absolute box with no border

135 Absolute box border 2: Border will reduce the width or height of the content area of a stretched box.

136 Lorem ipsum dolor sit Absolute box without border Lorem ipsum dolor sit Absolute box with border

137 Absolute box overflow: Overflow can be applied to absolute boxes. div { overflow: hidden; }

138 Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut. Overflow: visible

139 7. Float box model

140 Floated box appearance: A floated box is positioned within the normal flow, then taken out of the flow and shifted to the left or right as far as possible. Content may flow along the side of a float.

141 Float box width: The default is width:auto which will collapse the float box to the width of the widest line. Float box width can be sized or stretched.

142 Collapsed Lorem ipsum dolor sit amet Stretched Lorem ipsum dolor sit amet consect etuer adipi scing elit sed diam nonummy nibh euismod tinunt ut laoreet. Sized Duis autem vel eum iriure dolor in hendrerit in vulputate velit ess.

143 Float box height: The default is height:auto which will collapse the float box to the height of all of its child elements. Float box height can be sized but not stretched.

144 Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum eu feugiat nulla facilisis vel illum dolore eu feugiat. Collapsed Duis autem vel eum iriure dolor in hendrerit in. Sized

145 Float box margin: Can be applied to all sides. Left/top margins push float box away from original position. Right/bottom margins affect wrapping content.

146 Float box padding: Can be applied to all sides. Padding is added to the overall width/height of the box.

147 Float box border: Can be applied to all sides. Border width is added to the overall width/height of the box.

148 Float box overflow: Overflow can be applied to float boxes.

149 Float box model: Float boxes use an additive model. Padding and border are added to overall width/height.

150 border padding 5px 10px content = 200px 10px 5px Total width = 230px

151 Russ Weakley Max Design Site: maxdesign.com.au Twitter: twitter.com/russmaxdesign Slideshare: slideshare.net/maxdesign Linkedin: linkedin.com/in/russweakley

q u e s t i o n s? contact or

q u e s t i o n s? contact or Chocolate Grail offers gourmet and artisanal chocolatiers different advertising options listed below. Two options are free: the basic listing and reviews. listings home page features quick pick fix reviews

More information

ALLASSO CORPORATE IDENTITY USER GUIDLINES

ALLASSO CORPORATE IDENTITY USER GUIDLINES ALLASSO CORPORATE IDENTITY USER GUIDLINES Your Partner in Network Security ALLASSO CORPORATE IDENTITY Your Partner in Network Security Already a success in the short time we've been around, our goal is

More information

Masthead. Masthead Subhead. Heading 1 spans two columns as a standard. What s Inside. Issue style Year Month Newsletter Website URL

Masthead. Masthead Subhead. Heading 1 spans two columns as a standard. What s Inside. Issue style Year Month Newsletter Website URL Masthead Masthead Subhead Issue style Year Month Newsletter Website URL. See last page for tips on inserting images. What s Inside TOC List Bullet. This text is set in a floating text box anchored in the

More information

Reputation X Content Development and Promotion Checklist

Reputation X Content Development and Promotion Checklist Reputation X Content Development and Promotion Checklist reputation x look better online 2.7 million blog posts are published every day. How do we cut through the noise? Why does some content achieve higher

More information

Logo style guide March 2017

Logo style guide March 2017 Barbershop Toolbox Logo style guide March 2017 Barbershop / Logo Barbershop logo The BARBERSHOP logo consists of a traditional barbershop pole symbol in magenta/black, mustache and the word mark. These

More information

RuSSEll sutter. Proposal / Navigational Chart / Wireframes. Joseph Palmer Prof: Erikk Ross IMD September 2017

RuSSEll sutter. Proposal / Navigational Chart / Wireframes. Joseph Palmer Prof: Erikk Ross IMD September 2017 RuSSEll sutter Proposal / Navigational Chart / Wireframes Joseph Palmer Prof: Erikk Ross IMD 331 5 September 2017 Proposal The Brand Russell Sutter is a collection of unique items for the modern lifestyle.

More information

Corporate Brand Standards

Corporate Brand Standards Corporate Brand Standards Welcome to the new brand standards guideline for the Altegra Health logo mark and brand. This new dynamic brand will help convey the messaging of Altegra Health while increasing

More information

Barbershop / Contents. Logo 3. Color palette 8. Typography 9. Example of use 10

Barbershop / Contents. Logo 3. Color palette 8. Typography 9. Example of use 10 Barbershop / Contents This is an interactive contentpage. Clicking on the listed items will redirect to the relevant page in this document. Logo 3 Color palette 8 Typography 9 Example of use 10 2 Barbershop

More information

Cisco Derivative Work Process Automation Program. Samita Bhandary Information Architect

Cisco Derivative Work Process Automation Program. Samita Bhandary Information Architect Learning @ Cisco Derivative Work Process Automation Program Samita Bhandary Information Architect Introduction and Problem Description of current manual Derivative Works Program The Worldwide Learning

More information

SECRET DESIGNS DESIGNED BRAND GUIDELINE

SECRET DESIGNS DESIGNED BRAND GUIDELINE DESIGNED BRAND 2018 GUIDELINE TABLE OF CONTENT 01 COMPANY INRODUCTION PAGE 04 02 OUR LOGO DESIGN PAGE 06 03 THE COLOR SYSTEM PAGE 10 04 TYPOGRAPHY PAGE 12 05 LOGO VIOLATION PAGE 14 06 LOGO USAGE PAGE

More information

Certified for IBM Software. Mark and Title Guidelines

Certified for IBM Software. Mark and Title Guidelines IBM Software Mark and Title Guidelines Overview 3 Why the IBM... Marks? 3 What Are the Marks and Titles? 3 What Do the Marks Mean? 3 Using Your Mark 4 When and Where Can I Use the Marks? 4 Using Your Title

More information

TYPOGRAPHY. Thoughtful use of typography allows a brand to evoke emotion and convey the tone of the brand.

TYPOGRAPHY. Thoughtful use of typography allows a brand to evoke emotion and convey the tone of the brand. TYPOGRAPHY TYPOGRAPHY Typography can strongly affect how people react to a design and other communications. Consistent use of a chosen typeface can be just as important as the use of color or images in

More information

Summary Lauren Light. Mobile development for a stable company.

Summary Lauren Light. Mobile development for a stable company. Summary Lauren Light Mobillo is positioned to be a leader in the global technology industrywith clean lines, sharp yet inviting colors and sleek typography. The look is modern without feeling trendy or

More information

Brand Standards Manual. Copyright March 2007

Brand Standards Manual. Copyright March 2007 Brand Standards Manual Copyright March 2007 Primary Logo Primary Logo Full Color - Positive Primary logo is to be used when ever possible. Primary background color is white. Plum PMS 5185 Metallic Grey

More information

University of Waterloo E-Thesis Template for LATEX

University of Waterloo E-Thesis Template for LATEX University of Waterloo E-Thesis Template for LATEX by Pat Neugraad A thesis presented to the University of Waterloo in fulfillment of the thesis requirement for the degree of Master of Science in Zoology

More information

February Pandera Labs Brand Guide

February Pandera Labs Brand Guide February 2017 Pandera Labs Brand Guide This brand style guide establishes the essence of who we are, what we stand for, and expresses our personality. The guide provides you with the tools you will need

More information

FINAL PROJECT VISUAL IDENTITY SYSTEM ARCHITECH Aliyah Northington

FINAL PROJECT VISUAL IDENTITY SYSTEM ARCHITECH Aliyah Northington FINAL PROJECT VISUAL IDENTITY SYSTEM Aliyah Northington DRAFT LOGO DESIGNS ARC ITECH 2 FINAL LOGO DESIGNS 3 BUSINESS CARD DESIGN Jane Villanueva CEO of Stuff 221 Golden Gate Blvd San Francisco, CA 94102

More information

Contents. Contact, 19. About our brand, 3 Key elements, 4. Design elements,13

Contents. Contact, 19. About our brand, 3 Key elements, 4. Design elements,13 The following identity and brand guideline for Bermondsey Pubs has been created to help you present the brand and all the elements that make up the company s visual identity in a consistent and recognizable

More information

IDENTITY STANDARDS MANUAL

IDENTITY STANDARDS MANUAL IDENTITY STANDARDS MANUAL Table of Contents (Click to Select Section) 1.1 How To Use This Manual BASIC STANDARDS FOR THE SIGNATURE 2.1 The Logo Mark 2.2 The Signatures 2.3 Coloration 2.4 Color Reproduction

More information

MISSION/VISION/VALUES

MISSION/VISION/VALUES BRAND GUIDELINES TABLE OF CONTENTS Why Brand Matters...2 Mission Statement...4 Color Palette...6 Typography...8 Logo Usage...10 Letterhead... 12 Powerpoint... 14 Closing...15 WHY BRAND MATTERS Brand is

More information

CREATE REGISTRY: FROM PRODUCT DETAIL, REGISTRY LANDING PAGE & MY ACCOUNT WIREFRAMES DRAFT V.1.0 July 30, 2014

CREATE REGISTRY: FROM PRODUCT DETAIL, REGISTRY LANDING PAGE & MY ACCOUNT WIREFRAMES DRAFT V.1.0 July 30, 2014 CREATE REGISTRY: FROM PRODUCT DETAIL, REGISTRY LANDING PAGE & MY ACCOUNT WIREFRAMES DRAFT V.1.0 July 30, 2014 Document Intro 3 ways to create a registry: from Product Detail from Registry Landing Page

More information

Visualization Concepts

Visualization Concepts Microsoft Surface: Visualization Concepts Version 1.0 Created by Date Created April 5, 2009 Table of Contents Posts of the Last Days pp. 3, 9 Post: Touching p.4 Post: Scaling p.5 Time Panel: Open p.6 TIme

More information

1 Basic elements. Corporate identity manual

1 Basic elements. Corporate identity manual 1 Basic elements Corporate identity manual 1 Basic elements Contents 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.15 The Woqod mark Protecting the Woqod mark Standard use sizes Colour variations

More information

TITLE EXAMPLE. Sub - title

TITLE EXAMPLE. Sub - title TITLE EXAMPLE Sub - title SUMMARY 1 TOPIC Relevant text 2 TOPIC Relevant text 3 TOPIC Relevant text 4 TOPIC Relevant text TIMELINE Euismod tincidunt ut laoreet dolore magna aliquam erat volutpat Title

More information

JetScan ifx. i100 Currency Scanner. Faster Processing, Lower Operating Costs

JetScan ifx. i100 Currency Scanner. Faster Processing, Lower Operating Costs JetScan ifx i100 Currency Scanner Faster Processing, Lower Operating Costs The Next-Generation JetScan Boost Productivity: 20% Faster with Fewer Rejects The JetScan ifx scanner allows users to take their

More information

Brand Guidelines. April acplus.com

Brand Guidelines. April acplus.com Brand Guidelines April 2018 The purpose of this style guide is to explain the brand style and ensure consistent application of the visual elements across all communications, both online and offline. 02

More information

I D E N T I T Y S TA N D A R D S M A N U A L

I D E N T I T Y S TA N D A R D S M A N U A L I D E N T I TY STA N DA R D S M A N UA L Rev 8.08 Table of Contents 1.1 How To Use This Manual 1.2 Web Resources Available to Faculty and Staff Basic Standards for the Signature 2.1 The Robert Morris University

More information

Logo Guidelines. Interim guide April 2010 LAUNCH

Logo Guidelines. Interim guide April 2010 LAUNCH Logo Guidelines Interim guide April 2010 LAUNCH Welcome page 2 of 11 The establishment of the UK Space Agency has elevated the UK s profile as a major player in the world s space industry. Clear and consistent

More information

Interreg Europe Graphic Book

Interreg Europe Graphic Book 1 Interreg Europe Graphic Book Contents Branding 1 Typography 8 Colour palette 10 Use of the origami 11 Sharing solutions for better regional policies Four Topics 14 Project identity 15 Stationery 20 Templates

More information

Aclara Corporate Identity. Standards & Design Guidelines

Aclara Corporate Identity. Standards & Design Guidelines Aclara Corporate Identity Standards & Design Guidelines Introduction Aclara has brought together the leading metering and data management companies of ESCO Technologies each well known and well established

More information

Cisco Solution Partner Program Logo Guidelines

Cisco Solution Partner Program Logo Guidelines Cisco Solution Partner Program Logo Guidelines 2014 Cisco Systems, Inc. All rights reserved. Cisco Solution Partner Program Logo Guidelines As one of the world s most valuable brands, Cisco has strong

More information

World University Championships

World University Championships Visual identity guidelines World University s Championnats du Monde Universitaires Introduction This document sets out the rules for the implementation of the new corporate identity system of the World

More information

01 MAY 2018 v1.0 QARAGANDY REGION VISUAL IDENTITY GUIDELINES

01 MAY 2018 v1.0 QARAGANDY REGION VISUAL IDENTITY GUIDELINES 01 MAY 2018 v1.0 VISUAL IDENTITY GUIDELINES Section 1 Concept 03 INDEX SECTION 1 CONCEPT Concept SECTION 2 CONSTRUCTION Logo Construction Main logo & Branches Monochrome Version Main logo & minimum size

More information

MichPA Content Guide. Table of Contents. Website Section Overview. Global Banner & Navigation. Content Area Client editable

MichPA Content Guide. Table of Contents. Website Section Overview. Global Banner & Navigation. Content Area Client editable Table of Contents Website Section Overview MichPA Content Guide Website Section Overview...1 FAQ...2 Content Area Styles...3 Client-side Right Navigation Styles...4 Font Index...5 Color Index...5 Rotating

More information

SUMMARY OF DESIGN CHOICES

SUMMARY OF DESIGN CHOICES SUMMARY OF DESIGN CHOICES Company Name The name is a Hawaiian word that means to go, move. As a new start up application development company, the name fit as Tech designs applications for people on the

More information

Thinking inside the box

Thinking inside the box Intro to CSS Thinking inside the box Thinking inside the box Thinking inside the box Thinking inside the box Thinking inside the box Thinking inside the box Thinking inside

More information

Corporate Identity. If you need information about anything in the Corporate Identity Manual, contact City Marketing.

Corporate Identity. If you need information about anything in the Corporate Identity Manual, contact City Marketing. Corporate Identity Our Corporate Identity is our face to the world. It is a statement of our personality representing how we perceive ourselves and how we want others to perceive us. It is important we

More information

The computer screen and text. Curved letters must be formed out of square picture elements, or pixels, each with a red, green and blue primary pixel.

The computer screen and text. Curved letters must be formed out of square picture elements, or pixels, each with a red, green and blue primary pixel. The computer screen and text Curved letters must be formed out of square picture elements, or pixels, each with a red, green and blue primary pixel. The computer screen and text OpenType and TrueType fonts

More information

This is an H1 Header. This is an H2 Header. This is an H3 Header

This is an H1 Header. This is an H2 Header. This is an H3 Header is a key element in web design. This templates delivers you sophisticated typography and various stylings. The style guide gives you an overview about all possible HTML tag stylings provided by the template.

More information

Brand Identity Standards

Brand Identity Standards Brand Identity Standards VERSION 1.0 JUNE 2008 This manual explains the approved usage of the Paradise Valley Community College brand identity. Since the brand identity is the cornerstone of all communication

More information

Back in the good old days type was set by hand using printing presses.

Back in the good old days type was set by hand using printing presses. CSS LINE-HEIGHT What is leading? Back in the good old days type was set by hand using printing presses. Printed material was created by setting out letters in rows. Each letter was created on an individual

More information

Graphic Identity Guidelines

Graphic Identity Guidelines Graphic Identity Guidelines Table of Contents Introduction Wordmark 1 Safety Area 2 Color 3 Primary Typography 4 Secondary Typography 5 Misuse of the Logo 6 Applications Official Seal 8 Letterhead 9 Typing

More information

Username. Password. Forgot your password? Sign in. Register as new user

Username. Password. Forgot your password? Sign in. Register as new user Username Password Forgot your password? Sign in Register as new user Registration Email Password Mobile phone Verify your account via SMS otherwise leave blank to verify via email. Terms & Conditions Lorem

More information

Chuck Chugumlung. Designer, Art Director, Creative Director - phone

Chuck Chugumlung. Designer, Art Director, Creative Director  - phone Chuck Chugumlung Designer, Art Director, Creative Director email- annexxstudio@gmail.com phone- 323-215-7580 Portfolio: pg 3-2d/3d Motion Graphics pg 15 - Interactive Design pg 29 - Web Design pg 36 -

More information

NABORS INDUSTRIES LTD. Corporate Identity Standards

NABORS INDUSTRIES LTD. Corporate Identity Standards NABORS INDUSTRIES LTD. Corporate Identity Standards UPDATED JUNE 2012 At, we recognize the importance of a strong and consistent brand. Our branding strategy and its uniform application help to ensure

More information

BRAND MANUAL INSTRUCTIONS FOR USING OUR NEW BRAND

BRAND MANUAL INSTRUCTIONS FOR USING OUR NEW BRAND BRAND MANUAL INSTRUCTIONS FOR USING OUR NEW BRAND OUR LOGO There are three variants of the Army Cadets logo (each available in two versions plain or with a dark background and reversed out text). Army

More information

welcome to explorator. search term

welcome to explorator. search term welcome to explorator. search term EXPLORE table of contents this is the specifics under the big category 2 table of contents 2 research 16 the product literature review introduction precedent features

More information

Word Mark Style Guide

Word Mark Style Guide Word Mark Style Guide 01/23/07 Introduction The creation of Pitt Business gives a clear visual identity to the Joseph M. Katz Graduate School of Business, the College of Business Administration, the Institute

More information

Schrödinger's Website

Schrödinger's Website Schrödinger's Website or: How we built websites of indeterminate design for Adobe Portfolio a talk by Jackie Balzer (@jackiebackwards) https://en.wikipedia.org/wiki/file:schrodinger_cat_in_box.jpg Web

More information

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model Unit 20 - Client Side Customisation of Web Pages Week 2 Lesson 4 The Box Model So far Looked at what CSS is Looked at why we will use it Used CSS In-line Embedded (internal style-sheet) External

More information

view cart Expanded view 2 items in your cart 18 LCD TV MODEL NUMBER $1, LCD TV MODEL NUMBER $1, Subtotal: $3,199.

view cart Expanded view 2 items in your cart 18 LCD TV MODEL NUMBER $1, LCD TV MODEL NUMBER $1, Subtotal: $3,199. cameras & camcorders phones & fax computers appliances building personal care accessories special offers gift ideas > appliances appliances items in your cart 0 Expanded view vacuums Stet clita sea takimata

More information

2005 WebGUI Users Conference

2005 WebGUI Users Conference Cascading Style Sheets 2005 WebGUI Users Conference Style Sheet Types 3 Options Inline Embedded Linked Inline Use an inline style sheet to modify a single element one time in a page.

More information

Chapter 3 CSS for Layout

Chapter 3 CSS for Layout Chapter 3 CSS for Layout Chapter two introduced how CSS is used to manage the style of a webpage, this chapter explores how CSS manages the layout of a webpage. Generally a webpage will consist of many

More information

Visual identity manual

Visual identity manual Visual identity manual The Innovative Medicines Initiatives (IMI) visual identity manual is the basic guide for establishing and maintaining brand consistency for IMI. It is intended for the use of IMI

More information

Monochrome Cartridge Reliability Comparison Study 2016

Monochrome Cartridge Reliability Comparison Study 2016 Test Report Monochrome Cartridge Reliability Comparison Study 2016 HP LaserJet Toner Cartridges vs. Xerox Brand in EMEA The spencerlab DIGITAL COLOR LABORATORY has conducted a cartridge reliability comparison

More information

Monochrome Cartridge Reliability Comparison Study 2016

Monochrome Cartridge Reliability Comparison Study 2016 Test Report Monochrome Cartridge Reliability Comparison Study 2016 HP LaserJet Toner Cartridges vs. Innovera Brand by Clover Imaging Group The spencerlab DIGITAL COLOR LABORATORY has conducted a cartridge

More information

IDM 221. Web Design I. IDM 221: Web Authoring I 1

IDM 221. Web Design I. IDM 221: Web Authoring I 1 IDM 221 Web Design I IDM 221: Web Authoring I 1 Week 6 IDM 221: Web Authoring I 2 The Box Model IDM 221: Web Authoring I 3 When a browser displays a web page, it places each HTML block element in a box.

More information

Style guide. March 2017 CC BY 4.0 The Tor Project

Style guide. March 2017 CC BY 4.0 The Tor Project Style guide March 2017 CC BY 4.0 The Tor Project Introduction The visual identity of software is an integral part of its user experience. Correctly using a consistent and attractive style is important

More information

VISUAL IDENTITY GUIDELINES

VISUAL IDENTITY GUIDELINES VISUAL IDENTITY GUIDELINES AUGUST 2017 VISUAL IDENTITY GUIDELINES sspnet.org ii The Society for Scholarly Publishing (SSP), founded in 1978, is a nonprofit organization formed to promote and advance communication

More information

Creating our identity brand guidelines

Creating our identity brand guidelines Creating our identity brand guidelines on behalf of CREATING OUR IDENTITY INTRODUCTION Our identity is the visual representation of our brand and it communicates not only what we do, but also what we believe

More information

Monochrome Cartridge Reliability Comparison Study 2013

Monochrome Cartridge Reliability Comparison Study 2013 Test Report Monochrome Cartridge Reliability Comparison Study 2013 HP LaserJet Toner Cartridges vs. major Non-HP Brands in EMEA The spencerlab DIGITAL COLOR LABORATORY has conducted a cartridge reliability

More information

EECS1012. Net-centric Introduction to Computing. Lecture 5: Yet more CSS (Float and Positioning)

EECS1012. Net-centric Introduction to Computing. Lecture 5: Yet more CSS (Float and Positioning) EECS 1012 EECS1012 Net-centric Introduction to Computing Lecture 5: Yet more CSS (Float and Positioning) Acknowledgements Contents are adapted from web lectures for Web Programming Step by Step, by M.

More information

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model

Unit 20 - Client Side Customisation of Web Pages. Week 2 Lesson 4 The Box Model Unit 20 - Client Side Customisation of Web Pages Week 2 Lesson 4 The Box Model Last Time Looked at what CSS is Looked at why we will use it Used CSS In-line Embedded (internal style-sheet) External

More information

I D E N T I TY STA N DA R D S M A N UA L Rev 10.13

I D E N T I TY STA N DA R D S M A N UA L Rev 10.13 I D E N T I TY STA N DA R D S M A N UA L 3150-81-13 Rev 10.13 Table of Contents 1.1 How To Use This Manual 1.2 Web Resources Available to Faculty and Staff Basic Standards for the Signature 2.1 The Robert

More information

Monochrome Cartridge Reliability Comparison Study 2012

Monochrome Cartridge Reliability Comparison Study 2012 Test Report Monochrome Cartridge Reliability Comparison Study 2012 HP LaserJet Toner Cartridges vs. Asia Pacific Non-HP Brands The spencerlab DIGITAL COLOR LABORATORY has conducted a cartridge reliability

More information

Updates to Phone Contact

Updates to Phone Contact Introduction and Table of Contents Updates to Phone Contact Updated PHONE CONTACT Information as it appears in VIEW and EDIT modes: Page 2 Current View and Edit Modes Page 3 NEW View and Edit Modes Page

More information

Microsoft. Windows for Small Business Sitemap & Wireframes Version 1.1. March 27, 2009

Microsoft. Windows for Small Business Sitemap & Wireframes Version 1.1. March 27, 2009 Microsoft Sitemap & Wireframes Version. March 7, 009 » Sitemap & Wireframes» Sitemap VERSION. Please note that all labels are temporary. Home 0.0 Home Right Rail: (call to action) Better than ever (why

More information

BRAND IDENTITY GUIDELINES

BRAND IDENTITY GUIDELINES BRAND IDENTITY GUIDELINES 1 SKOLL FOUNDATION 03 BRANDING POSITIONING 04 SIGNATURE AND CLEAR ZONE 05 ACCEPTABLE USAGE 06 INCORRECT USAGE 07 LOGO COLOR PALETTE 08 LOGOTYPE USAGE WITH IMAGERY 10 SYMBOL USAGE

More information

Connected TV Applications for TiVo. Project Jigsaw. Design Draft. 26 Feb 2013

Connected TV Applications for TiVo. Project Jigsaw. Design Draft. 26 Feb 2013 Connected TV Applications for TiVo Project Jigsaw Design Draft 26 Feb 2013 UI Design Connected TV application for TiVo Project Jigsaw 2 Overview LAUNCH POINT The goal of Project Jigsaw is to create a library

More information

Corporate Identity Manual for Network members

Corporate Identity Manual for Network members Corporate Identity Manual for Network members February 17 www.mgiworld.com Contents Welcome 3 Our Brands 4 Core Elements 5 Colour 6 Font 7 Logo 8 Rules for MGI-prefix firms 14 Values 15 Message 16 Disclaimer

More information

SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE

SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE 4175 Route 71 Oswego, IL 60543 (630) 636-3080 WWW.SD308.ORG SCHOOL DISTRICT 308 VISUAL STANDARD GUIDE Table of contents Letter from the Superintendent of Schools...4

More information

simplifying IT CONSUTING SALES STAFFING SUPPORT 5432 Any Street West Townsville, State ph fax

simplifying IT CONSUTING SALES STAFFING SUPPORT 5432 Any Street West Townsville, State ph fax CONSUTING SALES STAFFING SUPPORT Pala, metuo obruo opes ratis commoveo at. Blandit haero melior quibus, saepius ne hendrerit iustum validus nulla indoles gemino pneum. Brevitas modo aliquip vero, ulciscor

More information

WCU ATHLETICS LOGOS & USAGE WESTERN CAROLINA UNIVERSITY ATHLETIC LOGO GUIDELINES PAGE 1

WCU ATHLETICS LOGOS & USAGE WESTERN CAROLINA UNIVERSITY ATHLETIC LOGO GUIDELINES PAGE 1 WCU ATHLETICS LOGOS & USAGE PAGE 1 WCU ATHLETICS LOGOS The WCU Athletic Style Guide provides the official guidelines for use of the Western Carolina University athletics logos on collateral, signage, merchandise

More information

CALIFORNIA STATE UNIVERSITY, CHICO Visual Identity Guide. Effective August, 2017

CALIFORNIA STATE UNIVERSITY, CHICO Visual Identity Guide. Effective August, 2017 Visual Identity Guide Effective August, 2017 Contents FROM THE PRESIDENT S VISUAL IDENTITY UNIVERSITY NAMES UNIVERSITY COLORS UNIVERSITY SEAL UNIVERSITY FLAME AND FLAMELINE SIGNATURE CSU, CHICO WEB SIGNATURE

More information

24 July { 6 September 2017 MEDIA KIT Free WEARABLE ARTWORKS BRISKET SLIDERS COUNTRY FAIR CHILDREN S FESTIVAL THE COMMUNITY VOICE

24 July { 6 September 2017 MEDIA KIT Free WEARABLE ARTWORKS BRISKET SLIDERS COUNTRY FAIR CHILDREN S FESTIVAL THE COMMUNITY VOICE A M A G A Z I N E F O R E U M U N D I & H I N T E R L A N D 276 { 6 September 2017 24 July 2014 MEDIA KIT 2018 Free WEARABLE ARTWORKS P9 BRISKET SLIDERS COUNTRY FAIR P16 P12 P13 CHILDREN S FESTIVAL THE

More information

Corporate Identity. TAMEER Corporate Identity

Corporate Identity. TAMEER Corporate Identity Corporate Identity Brand building Brandmark Logo Ratios 2.3 x 3.5 x 0.5 x x 0.2 x 3.2 x Brandmark Logo Safe Area Brandmark Logo Ratios 2.25 x x 0.2 x 1.5 x 0.5 x 3.2 x Brandmark Logo Safe Area Brandmark

More information

Personal brand identity desigend by JAVIER

Personal brand identity desigend by JAVIER Personal brand identity desigend by JAVIER Logo conceptualization Concept Shape the Z is the base, if you observe I ve placed Color The concept was designed using the The use of the AZ is a great idea,

More information

II. COLOR PALETTE Primary p. 18 Secondary p. 18. III. TYPOGRAPHY Primary typography p. 19 Secondary typography p. 20 Default typography p.

II. COLOR PALETTE Primary p. 18 Secondary p. 18. III. TYPOGRAPHY Primary typography p. 19 Secondary typography p. 20 Default typography p. STYLE GUIDE 2016 TABLE OF CONTENTS I. LOGO Introduction p. 3 Primary logo: Full-color application p. 4 One-color applications p. 5 Reverse applications: p. 6 Two-color p. 6 One-color p. 7 With tagline

More information

DESIGN GUIDELINES. Use the following slides as a guide to make sure your presentation follows the PCS Plus brand.

DESIGN GUIDELINES. Use the following slides as a guide to make sure your presentation follows the PCS Plus brand. Use the following slides as a guide to make sure your presentation follows the PCS Plus brand. LOGO PLACEMENT On white content slides the logo should appear in full colour on the bottom left of the screen

More information

Content Sections QUOTE ACCORDION IMAGE SLIDER WITH THUMBNAILS PHOTO GALLERY. Lehigh2018 Theme. Web & Mobile Services

Content Sections QUOTE ACCORDION IMAGE SLIDER WITH THUMBNAILS PHOTO GALLERY. Lehigh2018 Theme. Web & Mobile Services Page 1 QUOTE - Quote Text * - Source We re committed to giving students the very best of what Lehigh has to offer. Patrick V. Farrell, Provost for Academic Affairs Displays a quote within a grey box listing

More information

HP Color LaserJet CM4730 MFP series. Colour as fast and affordable as black-and-white.

HP Color LaserJet CM4730 MFP series. Colour as fast and affordable as black-and-white. HP Color LaserJet CM4730 MFP series Colour as fast and affordable as black-and-white. Take your productivity to a whole new level and watch it soar. With the HP Color LaserJet CM4730 MFP series, integrating

More information

IDM 221. Web Design I. IDM 221: Web Authoring I 1

IDM 221. Web Design I. IDM 221: Web Authoring I 1 IDM 221 Web Design I IDM 221: Web Authoring I 1 Week 7 IDM 221: Web Authoring I 2 Page Layout Part 1 IDM 221: Web Authoring I 3 Part 1 because part 2 is coming next term (RWD, Flexbox, Grids) Posi%on An

More information

MEDIA KIT Free P13 P12 P17 P10 THE COMMUNITY VOICE BOTANICAL COLOURS COMBATING MENTAL ILLNESS EUMUNDI IRONMAN FRUIT TREES IN BLOOM.

MEDIA KIT Free P13 P12 P17 P10 THE COMMUNITY VOICE BOTANICAL COLOURS COMBATING MENTAL ILLNESS EUMUNDI IRONMAN FRUIT TREES IN BLOOM. A M A G A Z I N E F O R E U M U N D I & H I N T E R L A N D 302 { 10 October 2018 24 July 2014 P13 P12 MEDIA KIT 2019 Free P17 P10 BOTANICAL COLOURS COMBATING MENTAL ILLNESS EUMUNDI IRONMAN FRUIT TREES

More information

CSE 154 LECTURE 5: FLOATING AND POSITIONING

CSE 154 LECTURE 5: FLOATING AND POSITIONING CSE 154 LECTURE 5: FLOATING AND POSITIONING The CSS float property property float description side to hover on; can be left, right, or none (default) a floating element is removed from normal document

More information

BOOTSTRAP AFFIX PLUGIN

BOOTSTRAP AFFIX PLUGIN BOOTSTRAP AFFIX PLUGIN http://www.tutorialspoint.com/bootstrap/bootstrap_affix_plugin.htm Copyright tutorialspoint.com The affix plugin allows a to become affixed to a location on the page. You can

More information

Gestures: ingsa GESTURES

Gestures: ingsa GESTURES GESTURES FORWARD AND BACKWARD SWIPE RIGHT TO GO TO THE NEXT SCREEN OR SWIPE LEFT TO GO TO THE PREVIOUS SCREEN IN THE STORY FLOW SELECT TAP WITH 1 FINGER TO NAVIGATE THOROUGH AN INTERACTIVE ITEM (SCENES)

More information

GECF Brand GuidElinEs GECF 2011

GECF Brand GuidElinEs GECF 2011 GECF Brand Guidelines GECF Brand Guidelines COntents ABOUT THIS DOCUMENT 1.0 About GECF 1.1 What we stand for 1.2 Our brand 2.0 Logo 2.1 Main logo 2.2 Logo variations 2.3 Exclusion areas 3.0 Typography

More information

IDM 221. Web Design I. IDM 221: Web Authoring I 1

IDM 221. Web Design I. IDM 221: Web Authoring I 1 IDM 221 Web Design I IDM 221: Web Authoring I 1 Week 1 Introduc)on IDM 221: Web Authoring I 2 Hello I am Phil Sinatra, professor in the Interac4ve Digital Media program. You can find me at: ps42@drexel.edu

More information

norwich university style guide

norwich university style guide norwich university style guide 06.22.05 table of contents i. logo Introduction Primary logo: Full-color application One-color applications Reverse applications: Two-color One-color With tagline With departmental

More information

First Diploma Unit 10 Client Side Web. Week 4 -The CSS Box model

First Diploma Unit 10 Client Side Web. Week 4 -The CSS Box model First Diploma Unit 10 Client Side Web Week 4 -The CSS Box model Last Session CSS Basics Fonts Real world site This Session CSS box model Concept of identity -id The CSS box model represents every element

More information

HMH : Site Consolidation Batch 1 June Wireframes : v 1.5

HMH : Site Consolidation Batch 1 June Wireframes : v 1.5 HMH : Site Consolidation Document Overview Page of Overview Legend A wireframe is a visual guide representing the components of a webpage and the relationships between its pages. It specifies the critical

More information

CLASSES are a way to select custom elements without using a tag name

CLASSES are a way to select custom elements without using a tag name CSS (Part II) Using Classes CLASSES are a way to select custom elements without using a tag name Adding a Class Lorem ipsum dolor sit amet, consectetuer adipiscing elit. You can add

More information

BRAND GUIDELINES All rights reserved.

BRAND GUIDELINES All rights reserved. BRAND GUIDELINES 2017. All rights reserved. LOGO :: INTRODUCTION The Live Purple Logo Mark the most recognizable visual brand element differentiates itself from similar cause based fundraisers. The mark

More information

Apple Identity Guidelines. For Channel Affiliates and Apple-Certified Individuals

Apple Identity Guidelines. For Channel Affiliates and Apple-Certified Individuals Apple Identity Guidelines For Channel Affiliates and Apple-Certified Individuals March 2018 The Apple identity is a seal of approval and a promise of excellence. When you are authorized or certified in

More information

Brand identity design. Professional logo design + Branding guidelines + Stationery Designed by JAVIER

Brand identity design. Professional logo design + Branding guidelines + Stationery Designed by JAVIER Brand identity design Professional logo design + Branding guidelines + Stationery Designed by JAVIER Logo conceptualization Concept Shape Typography Color After reading the information provided After some

More information

FLOATING AND POSITIONING

FLOATING AND POSITIONING 15 FLOATING AND POSITIONING OVERVIEW Understanding normal flow Floating elements to the left and right Clearing and containing floated elements Text wrap shapes Positioning: Absolute, relative, fixed Normal

More information

UVic Senior s Program: Microsoft Word

UVic Senior s Program: Microsoft Word UVic Senior s Program: Microsoft Word Created by Robert Lee for UVic Senior s Program website: https://www.uvic.ca/engineering/computerscience/community/index.php Opening Microsoft Word: Launch it from

More information

Chapter 7 Tables and Layout

Chapter 7 Tables and Layout Chapter 7 Tables and Layout Presented by Thomas Powell Slides adopted from HTML & XHTML: The Complete Reference, 4th Edition 2003 Thomas A. Powell We want Layout! Design requirements: pixel level layout,

More information

Unit 20 - Client Side Customisation of Web Pages WEEK 5 LESSON 6 DESIGNING A WEB-SITE

Unit 20 - Client Side Customisation of Web Pages WEEK 5 LESSON 6 DESIGNING A WEB-SITE Unit 20 - Client Side Customisation of Web Pages WEEK 5 LESSON 6 DESIGNING A WEB-SITE Today s tasks This lesson is on the wiki: Design Exercise (for A3); corporate theme in primary design 3rd November

More information