Let's take a look at what CSS looks like in Dreamweaver using the "Embedded" coding which is the styles are within the html code and not separate.

Size: px
Start display at page:

Download "Let's take a look at what CSS looks like in Dreamweaver using the "Embedded" coding which is the styles are within the html code and not separate."

Transcription

1 Creating web pages using CSS and Dreamweaver CS3 Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can be applied to any kind of XML document, including SVG and XUL. CSS can be used locally by the readers of web pages to define colors, fonts, layout, and other aspects of document presentation. It is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation (written in CSS). This separation can improve content accessibility, provide more flexibility and control in the specification of presentation characteristics, and reduce complexity and repetition in the structural content. CSS can also allow the same markup page to be presented in different styles for different rendering methods, such as on-screen, in print, by voice (when read out by a speech-based browser or screen reader) and on Braillebased, tactile devices. CSS specifies a priority scheme to determine which style rules apply if more than one rule matches against a particular element. In this so-called cascade, priorities or weights are calculated and assigned to rules, so that the results are predictable. The content above came from Cascading in the Cascading Style Sheets refers to how browsers interpret your style sheet. There are 3 types of CSS scripts, Embedded, External (linked), and InLine. In the following lesson we're going to talk about embedded CSS scripting Let's take a look at what CSS looks like in Dreamweaver using the "Embedded" coding which is the styles are within the html code and not separate. To do this go to File > New > choose > blank page - HTML document - layout - none > Create

2 Next let's look at the Property Inspector to see how CSS can be set up using it. To set up Embedded CSS select the Page Properties button to access the page dialog or choose Modify > Page Properties. Choose the Background color palette by left clicking on it and choose blue for color which is # Choose the OK button to close the dialog. If you were trying to decide on a background color and wanted to see the color then choose > Apply, then the dialog box won't close on you. What does all the settings mean? Click here for more information. Next select the Code view to see what was created by Dreamweaver. Without knowing any CSS scripting you just created your first code or you've been creating it without realizing it. See below; <style type="text/css"> the opening tag identifies what the code type is and what formatting will take place for this page only to the closing tag </style> for the browser to know how to display the page. The body tag is telling the browser what color the background is to be, notice also that this is all located within the <head> tags </head>. body { background-color: #000099;

3 Working with CSS isn't so bad and if you've been creating web pages before you've been using CSS. Want to know more - CSS Specifications - Cascading Part of Style Sheets Style Sheet Anatomy Example of a simple CSS rule; The Selector (element) and the Declaration block (what's between brackets) make up a rule. The Property identifies what to change, such as in this example "color," and Value instructs the browser in this case which color and in this example that would be the color blue. Let's create a New HTML document and look at other ways that Dreamweaver can add CSS to your page. Go to New > Blank Page > HTML > Layout - scroll down to - 3 columns absolutely positioned, header > DocType - leave the default > XHTML 1.0 and Layout CSS underneath leave default > Add to Head > select Create button.

4 This is what the page looks like. To see how the page is made you need to look at the code view, to do this select the Code button. Let's look at how dreamweaver builds a page using CSS.

5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " transitional.dtd"> <html xmlns=" <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>untitled Document</title> <style type="text/css"> <!-- body { font: 100% Verdana, Arial, Helvetica, sans-serif; background: #666666; margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */ padding: 0; text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */ color: #000000;.thrColAbsHdr #container { position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */ width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */ background: #FFFFFF; margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */ border: 1px solid #000000; text-align: left; /* this overrides the text-align: center on the body element. */ /* Tips for absolutely positioned sidebars with header and footer: 1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire. 2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #maincontent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained. 3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document. 4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header. */.thrcolabshdr #header { height: 60px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */ background: #DDDDDD; padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */.thrcolabshdr #header h1 { margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between

6 divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */ padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */.thrcolabshdr #sidebar1 { position: absolute; top: 60px; left: 0; width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */ background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */ padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */.thrcolabshdr #sidebar2 { position: absolute; top: 60px; right: 0; width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */ background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */ padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */.thrcolabshdr #maincontent { margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */ padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */.thrcolabshdr #footer { padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */ background:#dddddd;.thrcolabshdr #footer p { margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space

7 between divs */ padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */ float: right; margin-left: 8px;.fltlft { /* this class can be used to float an element left in your page */ float: left; margin-right: 8px; --> </style><!--[if IE 5]> <style type="text/css"> /* place css box model fixes for IE 5* in this conditional comment */.thrcolabshdr #sidebar1 { width: 180px;.thrColAbsHdr #sidebar2 { width: 190px; </style> <![endif]--></head> <body class="thrcolabshdr"> <div id="container"> <div id="header"> <h1>header</h1> <!-- end #header --></div> <div id="sidebar1"> <h3>sidebar1 Content</h3> <p>the background color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the left side of the #maincontent div if it will always contain more content. </p> <p>donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque eget, cursus et, fermentum ut, sapien. </p> <!-- end #sidebar1 --></div> <div id="sidebar2"> <h3>sidebar2 Content</h3> <p>the background color on this div will only show for the length of the content. If you'd like a dividing line instead, place a border on the right side of the #maincontent div if it will always contain more content. </p> <p>donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque eget, cursus et, fermentum ut, sapien. </p> <!-- end #sidebar2 --></div> <div id="maincontent"> <h1> Main Content </h1> <p>lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent aliquam, justo convallis luctus rutrum, erat nulla fermentum diam, at nonummy quam ante ac quam. Maecenas urna purus, fermentum id, molestie in, commodo porttitor, felis. Nam blandit quam ut lacus. Quisque ornare risus quis ligula. Phasellus tristique purus a augue condimentum adipiscing. Aenean sagittis. Etiam leo pede, rhoncus venenatis, tristique in, vulputate at, odio. Donec et ipsum et sapien vehicula nonummy. Suspendisse potenti. </p> <h2>h2 level heading </h2> <p>lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent aliquam, justo convallis luctus rutrum, erat nulla fermentum diam, at nonummy quam ante ac quam. Maecenas urna purus, fermentum id, molestie in, commodo porttitor, felis. Nam blandit quam ut lacus. Quisque ornare risus quis ligula. Phasellus tristique purus a augue condimentum adipiscing. Aenean sagittis. Etiam leo pede, rhoncus venenatis, tristique in, vulputate at, odio.</p> <!-- end #maincontent --></div> <div id="footer"> <p>footer</p> <!-- end #footer --></div> <!-- end #container --></div> </body> </html> Creating CSS and linking external CSS Now that we've seen Dreamweaver create CSS for us let's use the tools that Dreamweaver has to create

8 your first CSS web page from scratch. In this tutorial we'll create an External Style Sheet that we'll link too. Go to File > New > Layout <none> DocType (XHTML 1.0 Transitional) > Create Next before we start creating our web page we need to look at the CSS panel and how it works. To find the CSS panel go to Window > CSS Styles. The CSS Styles panel lets you track the CSS rules and properties affecting a currently selected page element (Current mode), or all of the rules and properties that are available to the document (All mode). A toggle button at the top of panel lets you switch between the two modes. The CSS Styles panel also lets you modify CSS properties in both All and Current mode.

9 Located at the bottom left of the CSS panel are 3 different types of CSS views, the first is - Show only set Properties --> which is for that rule only, The second is - Show List View - is every possible properties available, and the third is - Show Category View - this I would recommend for you when you're first learning how to use CSS properties. Okay it time to get started on the new web page. First thing to do is select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project.

10 Let's get started, first make sure your in Design View. Then select the Common tab if you don't have it selected already. Starting from the left and moving to the right count five in and you'll find the Insert Div Tag icon. We're going to insert a div tag into the web page. Once the icon is selected a Insert Div Tag dialog box will open, choose or type in the following information that's below. Dreamweaver will add text into you div tag so it's easy to recognize it. This is where the Title image is going to be located in this div tag. With the text selected in the div tag go to Insert > Image. In the Image source dialog choose > divtitle.jpg file from your image folder.

11 Next the Image Tag Accessibility Attributes dialog will open, add in the Alternate text area " Title image " Welcome to Canada", then select the OK button. So what is this Accessibility Attributes? Let's say someone that can't see well is using software to assisst them in reading web pages to give them information, also when you drag your cursor over the image you'll get a popup of the text that you added. If the text on the web page isn't in a table then the software can read the information to them. If you don't add the Accessibility Attributes to an image then the software can only tell the user the name of the image name and nothing else. So the Alternate text will give the user this "Title image " Welcome to Canada." By law everyone is suppose to create web pages that are accessible to all. But as we all know that isn't the case and this is why CSS is so important for all of us to learn. If your text is still there in the div tag just select it and delete it.

12 Take a look at the Code view to see what Dreamweaver created for us. Notice in the body tag you'll see the div tag with a class name that we added " titlebar", the div id is "div1", and the inserted image. The image is located in the div1 tag but we haven't created any code yet to tell the div tag where we would like to place it. To do this left click your cursor at the end of the Title tag in the header and then select the "Enter key" to create a return. Add the text in the red highlighted area below to your code, it has to be exact to work. Next we need to create a background color to do this go to Modify > Page Properties or Properties Inspector > Page Properties button. In the Page Properties dialog choose the Background color text box and type # which is a dark green color. Also look in the code after closing the page properties dialog and notice that the background tag was added to the Style tag.

13 Notice that the image has a curved corners and the color matches the background color. Now lets create another div tag to add an image to the left side of the web page. Select the Insert Div Tag add the following information. icon and

14 In this div tag go to Insert > Image > select from your image folder > leftsideimage.jpg to insert it into the div tag. Once you do this it should look like the example below. So we have a problem the new image is on top of the title image. To fix this first we need to know the height of the title image to do this select the title image and in the Properties Inspector will give us that information which is 200 px. We need this to know the css information to be added to the second div tag.

15 Select the Code View, then copy the.titlebar and all the code that goes with it. Next after the closing curly bracket > paste the code and change the class name to.leftsideimage. Now to fix the overlapping image change the top setting to 200 pixels. Next paste the same code again after the closing curly bracket again of the leftsideimage selector and rename this selector to.canada_1 > top: 200px > left:356px, then a return which will give you a popup menu and select background > then color > and white for the color. This will be div tag 3 so you going to add another div tag to the code to put this all together. This is what the page should look like so far. F12 is the short cut key to view the page in a browser.

16 Yes it's really the end. :)

Faculty Web Pages: Editing the Template Prepared by Tamara Fudge, June 2008

Faculty Web Pages: Editing the Template Prepared by Tamara Fudge, June 2008 Faculty Web Pages: Editing the Template Prepared by Tamara Fudge, June 2008 FacWeb 1 The following shows the contents of the FacWeb.txt document, with instructions for replacing certain items with your

More information

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

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

TITLE - Size 16 - Bold

TITLE - Size 16 - Bold EDCE 2010-2011 - Size 12 - Normal Conceptual Design of Structures - Size 12 - Normal Instructor: A. Muttoni, R. Salvi, P. Wahlen - Assitant: T. Clément - Author: X. Name - TITLE - Size 16 - Bold Pier Luigi

More information

Agenda. Combining Rules & Selectors Classes, IDs and DIVs

Agenda. Combining Rules & Selectors Classes, IDs and DIVs CSS Rules Agenda Combining Rules & Selectors Classes, IDs and DIVs 2 Border Styles Placing the above rule associated with h1 selector, will draw a line - 1 pixel wide - under the heading in our site (you

More information

FOR THOSE WHO DO. Lenovo Annual Report

FOR THOSE WHO DO. Lenovo Annual Report FOR THOSE WHO DO. Lenovo Annual Report 2014 CONTENTS 2 6 About Lenovo 4 Financial Highlights 5 Chairman & CEO Statement Performance About Lenovo Lenovo is one of the world's leading personal technology

More information

Creating An Effective Academic Poster. ~ A Student Petersheim Workshop

Creating An Effective Academic Poster. ~ A Student Petersheim Workshop Creating An Effective Academic Poster ~ A Student Petersheim Workshop 11 Seconds Poster Graphics and Pictures Headlines and Subheadings Poster Copy PRINCIPLES OF DESIGN BALANCE Visual balance comes

More information

The L A TEX Template for MCM Version v6.2

The L A TEX Template for MCM Version v6.2 For office use only T1 T2 T3 T4 Team Control Number 0000 Problem Chosen A 2016 MCM/ICM Summary Sheet For office use only F1 F2 F3 F4 The L A TEX Template for MCM Version v6.2 Summary Lorem ipsum dolor

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 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

Example project Functional Design. Author: Marion de Groot Version

Example project Functional Design. Author: Marion de Groot Version Example project Functional esign uthor: Marion de Groot Version 1.0-18-4-2013 Table of contents 3 Introduction Requirements gathering 4 Use cases 5 Use case flow diagram 6 Users and Rights 7 Requirements

More information

MKA PLC Controller OVERVIEW KEY BENEFITS KEY FEATURES

MKA PLC Controller OVERVIEW KEY BENEFITS KEY FEATURES 1881 OVERVIEW The ezswitch Controller is a compact PLC for the modular. In addition to providing commonly used network and Fieldbus interfaces, the controller supports all digital, analog and speciality

More information

Divs, Classes & IDs. Web Development

Divs, Classes & IDs. Web Development Divs, Classes & IDs Web Development Agenda Key concepts in page layout class id div 2 class Attribute While the name of an element specifies its type, the class attribute lets you assign to it one or more

More information

src0-dan/mobile.html <!DOCTYPE html> Dan Armendariz Computer Science 76 Building Mobile Applications Harvard Extension School

src0-dan/mobile.html <!DOCTYPE html> Dan Armendariz Computer Science 76 Building Mobile Applications Harvard Extension School src0-dan/mobile.html 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48.

More information

Row 1 This is data This is data

Row 1 This is data This is data mpdf TABLES CSS Styles The CSS properties for tables and cells is increased over that in html2fpdf. It includes recognition of THEAD, TFOOT and TH. See below for other facilities such as autosizing, and

More information

Row 1 This is data This is data. This is data out of p This is bold data p This is bold data out of p This is normal data after br H3 in a table

Row 1 This is data This is data. This is data out of p This is bold data p This is bold data out of p This is normal data after br H3 in a table mpdf TABLES CSS Styles The CSS properties for tables and cells is increased over that in html2fpdf. It includes recognition of THEAD, TFOOT and TH. See below for other facilities such as autosizing, and

More information

VISUAL IDENTITY STARTER KIT FOR ENSURING OUR COMMUNICATIONS ARE COHESIVE, CONSISTENT AND ENGAGING 23 OCTOBER 2008

VISUAL IDENTITY STARTER KIT FOR ENSURING OUR COMMUNICATIONS ARE COHESIVE, CONSISTENT AND ENGAGING 23 OCTOBER 2008 VISUAL IDENTITY STARTER KIT FOR ENSURING OUR COMMUNICATIONS ARE COHESIVE, CONSISTENT AND ENGAGING 23 OCTOBER 2008 Contents 1 Logo colourways and artworks: Colour combinations for use on different background

More information

Brand Guidelines MAY 2016

Brand Guidelines MAY 2016 Brand Guidelines MAY 2016 CONTENT LOGO 1-11 COLORS 12 TYPOGRAPHY 13-14 STYLE 15-19 STATIONARY 20-30 including: BUSINESS CARD 21-22 LETTERHEAD 23 EMAIL SIGNATURE 24 CLIENT PROPOSAL & REPORT 25-26 NEWSLETTER

More information

Paper Template for INTERSPEECH 2018

Paper Template for INTERSPEECH 2018 Paper Template for INTERSPEECH 2018 Author Name 1, Co-author Name 2 1 Author Affiliation 2 Co-author Affiliation author@university.edu, coauthor@company.com Abstract For your paper to be published in the

More information

Project Title. A Project Report Submitted in partial fulfillment of the degree of. Master of Computer Applications

Project Title. A Project Report Submitted in partial fulfillment of the degree of. Master of Computer Applications Project Title A Project Report Submitted in partial fulfillment of the degree of Master of Computer Applications By Student Name1(xxMCMCxx) Student Name2(yyMCMCyy) School of Computer and Information Sciences

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

TITLE SUBTITLE Issue # Title Subtitle. Issue Date. How to Use This Template. by [Article Author] Article Title. Page # Article Title.

TITLE SUBTITLE Issue # Title Subtitle. Issue Date. How to Use This Template. by [Article Author] Article Title. Page # Article Title. TITLE SUBTITLE Issue # Title Subtitle Issue Date TYPE TAGLINE HERE IN THIS ISSUE How to Use This Template Article Title Page # Article Title Page # TITLE SUBTITLE Issue # 2 Using Styles by Name Style HEADING

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

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 1 col1 col2 col3 col4 2 Poster Tutorial #1 Welcome to the poster tutorial! Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 3 We start at the very begin with an empty poster. In this tutorial,

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

An output routine for an illustrated book

An output routine for an illustrated book An output routine for an illustrated book Boris Veytsman TUG2014 School of Systems Biology & Computational Materials Science Center, MS 6A12, George Mason University, Fairfax, VA 22030 1. Introduction

More information

Intermediate District 288. Brand Manual. Visual Identity Guide

Intermediate District 288. Brand Manual. Visual Identity Guide Intermediate District 288 Brand Manual Visual Identity Guide SWMetro District Office 792 Canterbury Road, Suite 211 Shakopee, MN 55379 (952) 567.8100 Overview The SouthWest Metro Intermediate District

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

Timon Hazell, LEED AP Senior BIM Engineer. Galen S. Hoeflinger, AIA BIM Technologist Manager

Timon Hazell, LEED AP Senior BIM Engineer. Galen S. Hoeflinger, AIA BIM Technologist Manager Timon Hazell, LEED AP Senior BIM Engineer Galen S. Hoeflinger, AIA BIM Technologist Manager Find Joy in Your Work The Human Aspect The Human Aspect Importance of Architecture Know People The Human Aspect

More information

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox

Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 1 col1 col2 col3 col4 2 Poster Tutorial #1 Welcome to the poster tutorial! Thomas F. Sturm A Tutorial for Poster Creation with Tcolorbox 3 We start at the very begin with an empty poster. In this tutorial,

More information

Dreamweaver CS3 Lab 2

Dreamweaver CS3 Lab 2 Dreamweaver CS3 Lab 2 Using an External Style Sheet in Dreamweaver Creating the site definition First, we'll set up the site and define it so that Dreamweaver understands the site structure for your project.

More information

City of Literature Branding

City of Literature Branding Branding The logo is based upon letterpress print techniques to demonstrate Manchesters history with literature in physical form. It is designed to be responsive so has different versions dependant on

More information

The Next Big Thing Prepared for Meeting C

The Next Big Thing Prepared for Meeting C The Next Big Thing Prepared for Meeting C++ 2018 Andrei Alexandrescu, Ph.D. andrei@erdani.com November 15, 2018 1 / 48 Squeaky Wheel Gets the Grease 2 / 48 ( Those were the most cringey minutes of the

More information

American Political Science Review (APSR) Submission Template ANONYMISED AUTHOR(S) Anonymised Institution(s) Word Count: 658

American Political Science Review (APSR) Submission Template ANONYMISED AUTHOR(S) Anonymised Institution(s) Word Count: 658 APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template APSR Submission Template Submission

More information

TITLE. Tips for Producing a Newsletter IN THIS ISSUE

TITLE. Tips for Producing a Newsletter IN THIS ISSUE TITLE UNIT NAME DATE Advantages of a Newsletter The purpose of a newsletter is to provide specialized information to a targeted audience. Newsletters can be a great way to market yourself, and also create

More information

Brand identity guidelines

Brand identity guidelines Brand identity guidelines CONTENTS 1 LOGO 5 COLOUR 6 TYPEFACE 8 SIGNAGE These guidelines are to help you understand the PACIFIC ALUMINIUM visual brand. The following pages demonstrate how the PACIFIC ALUMINIUM

More information

New Features in mpdf v5.7

New Features in mpdf v5.7 New Features in mpdf v5.7 Table of Contents ToC Layout and styling... 1 Table of Contents styling... 1 Text-align on decimal point... 3 Automatic ToC and Bookmarks... 4 Improved line-breaking... 4 CSS

More information

ALWAYS MOVING FORWARD MIDWAY S GRAPHIC IDENTITY STANDARDS MANUAL

ALWAYS MOVING FORWARD MIDWAY S GRAPHIC IDENTITY STANDARDS MANUAL ALWAYS MOVING FORWARD MIDWAY S GRAPHIC IDENTITY STANDARDS MANUAL OVERVIEW The Midway Branding Standards is a reference tool that provides standards and guidelines for all usage of graphics in order to

More information

Viewport, custom CSS, fonts

Viewport, custom CSS, fonts CS120 Web Development LIU 1 of 9 Viewport, custom CSS, fonts Running a web server (optional) When creating basic static web sites, it s entirely possible to test them in your browser just using a file://

More information

Prototyping Robotic Manipulators For SPHERES

Prototyping Robotic Manipulators For SPHERES MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF AERONAUTICS AND ASTRONAUTICS: SPACE SYSTEMS LAB Prototyping Robotic Manipulators For SPHERES Lisandro Jimenez, Edward Lopez, Duncan Miller August 12,

More information

The POGIL Project Publication Guidelines

The POGIL Project Publication Guidelines 1 The POGIL Project Publication Guidelines Publication Submission Checklist 2 IN ORDER TO be published, you are required to review each item below before submitting your documents to The POGIL Project.

More information

COLORS COLOR USAGE LOGOS LOCK UPS PHOTOS ELEMENTS ASSETS POWERPOINT ENVIRONMENTAL COLLATERAL PROMO ITEMS TABLE OF CONTENTS

COLORS COLOR USAGE LOGOS LOCK UPS PHOTOS ELEMENTS ASSETS POWERPOINT ENVIRONMENTAL COLLATERAL PROMO ITEMS TABLE OF CONTENTS COLORS COLOR USAGE LOGOS LOCK UPS PHOTOS ELEMENTS ASSETS POWERPOINT ENVIRONMENTAL COLLATERAL PROMO ITEMS TABLE OF CONTENTS PANTONE 349 HEX 026937 RGB 2, 105, 55 CMYK 90, 33, 100, 26 PANTONE 7489 HEX 73A950

More information

Insights. Send the right message to the right person at the right time.

Insights. Send the right message to the right person at the right time. Insights Send the right message to the right person at the right time. StreamSend Insights Guide www.streamsend.com What is StreamSend Insights? StreamSend Insights is a powerful marketing automation platform

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

Published : License : None. INTRODUCTION 1. Nvu

Published : License : None. INTRODUCTION 1. Nvu NVU 1 Published : 2011-03-12 License : None INTRODUCTION 1. Nvu 2 1. NVU NvU is an Open Source Web editing application that allows WYSIWYG (What You See Is What You Get) editing and creation of web pages.

More information

Formatting Theses and Papers using Microsoft Word

Formatting Theses and Papers using Microsoft Word Formatting Theses and Papers using Microsoft Word (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop... i Workshop Objectives... i Session Prerequisites...

More information

VISUAL. Standards Guide

VISUAL. Standards Guide VISUAL Standards Guide Published: August 19, 2013 TABLE OF CONTENTS This is the approved Visual Standards Guide for Southeastern Community College. All logos and symbols in this manual are the property

More information

TUSCALOOSA CITY SCHOOLS Graphic Standards and Logo Use Guide

TUSCALOOSA CITY SCHOOLS Graphic Standards and Logo Use Guide TUSCALOOSA CITY SCHOOLS Graphic Standards and Logo Use Guide THE LOGO: Primary Version Concept: Fresh Modern Symbolic Rationale: The new logo gives the education system a fresh and modern appeal. Tuscaloosa

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

Layout with Layers and CSS

Layout with Layers and CSS Layout with Layers and CSS Today we're going to make a Web site layout. Preparatory Step 1. Inside your folder create a new folder and name it layout. 2. Inside the layout folder create a new folder and

More information

Breaking Out of the Box

Breaking Out of the Box 1 von 26 12.07.2007 11:37 Article Home» Client Side Coding» CSS Tutorials» Breaking Out of the Box Breaking Out of the Box By Jina Bolton May 16th 2007 Reader Rating: 9.2 One of the most commonly used

More information

The everyhook package

The everyhook package The everyhook package Stephen Checkoway s@cs.jhu.edu November 26, 2014 Abstract The everyhook package takes control of the six TEX token parameters \everypar, \everymath, \everydisplay, \everyhbox, \everyvbox,

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

Teach Yourself Microsoft Publisher Topic 2: Text Boxes

Teach Yourself Microsoft Publisher Topic 2: Text Boxes Teach Yourself Microsoft Publisher Topic 2: Text Boxes http://www.gerrykruyer.com In this second Microsoft Publisher lesson, you will look at Publisher Text Boxes and how they are different to MS Word

More information

BBN ANG 183 Typography Lecture 5A: Breaking text

BBN ANG 183 Typography Lecture 5A: Breaking text BBN ANG 183 Typography Lecture 5A: Breaking text Zoltán Kiss & Péter Szigetvári Dept of English Linguistics, Eötvös Loránd University kz & szp (delg) typo/breaking (5A) 1/ 37 outline probelms with WYSIWYG

More information

Dreamweaver CS5 Lab 2

Dreamweaver CS5 Lab 2 Dreamweaver CS5 Lab 2 Using an External Style Sheet in Dreamweaver Creating the site definition First, we'll set up the site and define it so that Dreamweaver understands the site structure for your project.

More information

logo graphic will go here

logo graphic will go here I will be creating a web site that will promote my freelance graphic design and photography business. I will outline my business and display of my commercial photography, print and web design. Having a

More information

Colors. F0563A Persimmon. 3A414C Cobalt. 8090A2 Slate Shale. C4CDD6 Alloy Coal. EFF3F5 Silver. EDF3F9 Horizon.

Colors. F0563A Persimmon. 3A414C Cobalt. 8090A2 Slate Shale. C4CDD6 Alloy Coal. EFF3F5 Silver. EDF3F9 Horizon. Colors Brand Primary F0563A Persimmon 3A414C Cobalt Secondary Brand 333943 Coal 697582 Shale 8090A2 Slate C4CDD6 Alloy E1E6EB Platinum EFF3F5 Silver EDF3F9 Horizon FFFFFF White Interaction 0088A9 Ocean

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

G2E Web Banners: 200 x 100 Signature. 160 x 160 Social Media. 125 x 125 web button

G2E Web Banners: 200 x 100  Signature. 160 x 160 Social Media. 125 x 125 web button G2E Web Banners: 200 x 100 Email Signature 160 x 160 Social Media We will generate a special coded link just for you. After you submit your order, you will receive an email (see sample below) with your

More information

BRAND IDENTITY GUIDELINE

BRAND IDENTITY GUIDELINE BRAND IDENTITY GUIDELINE PAGE 1 IMPORTANCE OF A This brand identity guideline details the conditions of use enforced when using the Bell Bunya Community Centre () brand in corporate production items. It

More information

Ghislain Fourny. Big Data 2. Lessons learnt from the past

Ghislain Fourny. Big Data 2. Lessons learnt from the past Ghislain Fourny Big Data 2. Lessons learnt from the past Mr. Databases: Edgar Codd Wikipedia Data Independence (Edgar Codd) Logical data model Lorem Ipsum Dolor sit amet Physical storage Consectetur Adipiscing

More information

THE ESPRESSO BOOK MACHINE PUBLISH INSTANTLY AT THE MSU LIBRARIES

THE ESPRESSO BOOK MACHINE PUBLISH INSTANTLY AT THE MSU LIBRARIES THE ESPRESSO BOOK MACHINE PUBLISH INSTANTLY AT THE MSU LIBRARIES THE ESPRESSO BOOK MACHINE THE ESPRESSO BOOK MACHINE AT MICHIGAN STATE UNIVERSITY Produced and compiled by Kyle Pressley Edited by Ruth Ann

More information

Are You Using Engagement TilesTM?

Are You Using Engagement TilesTM? Are You Using Engagement TilesTM? These interactive, easily embeddable tiles will convert website engagement into email subscribers and in-store customers with just one click! Coupon Tile: Send coupons

More information

This page presents most of typographical aspects of JA Drimia. Make your readers happy with great Typography and User Experience!

This page presents most of typographical aspects of JA Drimia. Make your readers happy with great Typography and User Experience! This page presents most of typographical aspects of JA Drimia Make your readers happy with great Typography and User Experience! This is an Heading 1 Lorem tortor Curabitur urna interdum Maecenas ut felis

More information

Visual identity guideline. BrandBook BLOOMINGFELD. Brandbook 2016.

Visual identity guideline. BrandBook BLOOMINGFELD. Brandbook 2016. BrandBook 2016. Logo. Correct color use Typeface BLOOMING FELD Brandon Grotesque Black Brandon Grotesque Regular ABCDEFGHIJKLMNOPQR STUVWXYZ ABCDEFGHIJKLMNOPQR STUVWXYZ abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz

More information

A Road To Better User Experience. The lonely journey every front-end developer must walk.

A Road To Better User Experience. The lonely journey every front-end developer must walk. A Road To Better User Experience The lonely journey every front-end developer must walk. Kotaro Fujita kut@tomatoboy.co Web/iOS/Game Development AGENDA What is UI/UX? Idealized Workflow Realities Random

More information

CSS Web2.0 Search. UNIVERSITY OF MASSACHUSETTS AMHERST CMPSCI 120 Fall Exam #1 graded Exam #2 rescheduled. now tentatively 11/10

CSS Web2.0 Search. UNIVERSITY OF MASSACHUSETTS AMHERST CMPSCI 120 Fall Exam #1 graded Exam #2 rescheduled. now tentatively 11/10 Lecture 12 CSS Web2.0 Search Announcements Exam #1 graded Exam #2 rescheduled now tentatively 11/10 Project #2 due November 9th html, CSS, Javascript Styling backgrounds CSS background properties are used

More information

NATURAL BUILDING TECHNOLOGIES Document: Feedback Sheet Revision: A Date: 13/07/16 Queries:

NATURAL BUILDING TECHNOLOGIES Document: Feedback Sheet Revision: A Date: 13/07/16 Queries: Document: Feedback Sheet Revision: A Date: 13/07/16 What s a wireframe? It s important that everything you need to present on the site is accounted for, and has been considered in the layout. The best

More information

Thesis GWU Example Dissertation. by Shankar Kulumani

Thesis GWU Example Dissertation. by Shankar Kulumani Thesis GWU Example Dissertation by Shankar Kulumani B.S. in Astronautical Engineering, May 2009, US Air Force Academy M.S. in Aeronautical and Astronautical Engineering, May 2013, Purdue University A Dissertation

More information

Portfolio. Site design, wireframes and other diagrams. Abigail Plumb-Larrick. Plumb Information Strategy

Portfolio. Site design, wireframes and other diagrams. Abigail Plumb-Larrick. Plumb Information Strategy Portfolio Site design, wireframes and other diagrams Plumb Information Strategy abigail@plumbinformation.com (917) 698-5511 NOTES and CALLOUTS Contents 1. Portfolio of design/ux work A. Shipping flow C.

More information

[Main Submission Title] (Font: IBM Plex Sans Bold, 36 point)

[Main Submission Title] (Font: IBM Plex Sans Bold, 36 point) [Main Submission Title] (Font: IBM Plex Sans Bold, 36 point) [Author Names] Author 1 [Anonymised for submission] 1, Author 2 [Anonymised] 2 (each author name separated by commas) and Author 3 [Anonymised]

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

Version 1.4 March 15, Notes Bayer- Kogenate 2010 WFH Microsoft Surface Project (HKOG-39563) Information Architecture Wireframes

Version 1.4 March 15, Notes Bayer- Kogenate 2010 WFH Microsoft Surface Project (HKOG-39563) Information Architecture Wireframes Notes Author Version Comments Mick Rosolek.0 Initial Draft Mick Rosolek. First Round Edits Mick Rosolek.2 Additional Edits Mick Rosolek.3 Amendment Mick Rosolek.4 Amendment Site Map - Page of 4 0.0 Pre-Engagement

More information

lipsum Access to 150 paragraphs of Lorem Ipsum dummy text a

lipsum Access to 150 paragraphs of Lorem Ipsum dummy text a lipsum Access to 150 paragraphs of Lorem Ipsum dummy text a Patrick Happel b November 24, 2018 Abstract lipsum is a L A TEX package that produces dummy text to be used in test documents or examples. The

More information

The pdfreview package

The pdfreview package The pdfreview package Michael Palmer v1.1 (September 22, 2017) Abstract The pdfreview package lets you add comments in the page margins of PDF files, e.g. when reviewing manuscripts or grading reports.

More information

Creating Websites without Code. Jesse Clark, Webmaster University of Northern Colorado

Creating Websites without Code. Jesse Clark, Webmaster University of Northern Colorado Creating Websites without Code Jesse Clark, Webmaster University of Northern Colorado Jesse.Clark@unco.edu Learning Code HTML and CSS Code Academy Khan Academy Tutsplus.com Lynda.com ($) Part of LinkedIn

More information

BBN ANG 183 Typography Lecture 5A: Breaking text

BBN ANG 183 Typography Lecture 5A: Breaking text BBN ANG 183 Typography Lecture 5A: Breaking text Zoltán Kiss & Péter Szigetvári Dept of English Linguistics, Eötvös Loránd University kz & szp (delg) typo/breaking (5A) 1 / 23 outline probelms with WYSIWYG

More information

file:///users/nma/desktop/chris_mac/chris_school/kcc_nmawebsite/_technology/sitebuild/htdocs/gargiulo/data/johndoe/spring/art128...

file:///users/nma/desktop/chris_mac/chris_school/kcc_nmawebsite/_technology/sitebuild/htdocs/gargiulo/data/johndoe/spring/art128... file:///users/nma/desktop/chris_mac/chris_school/kcc_nmawebsite/_technology/sitebuild/htdocs/gargiulo/data/johndoe/spring/art128... 1 2 3 4 5 company

More information

Pablo- Alejandro Quiñones. User Experience Portfolio

Pablo- Alejandro Quiñones. User Experience Portfolio Pablo- Alejandro Quiñones User Experience Portfolio About Me My name is Pablo I specialize in User Experience Research & User Interfaces I am passionate about User-Centered Design I believe research and

More information

Making the New Notes. Christoph Noack OpenOffice.org User Experience Max Odendahl OpenOffice.org Development Christian Jansen Sun Microsystems

Making the New Notes. Christoph Noack OpenOffice.org User Experience Max Odendahl OpenOffice.org Development Christian Jansen Sun Microsystems Making the New Notes Community Cooperation Concepts Christoph Noack OpenOffice.org User Experience Max Odendahl OpenOffice.org Development Christian Jansen Sun Microsystems Making the New Notes Community

More information

CLASP Website Redesign Client Deliverables Spring 2007

CLASP Website Redesign Client Deliverables Spring 2007 CLASP Website Redesign Client Deliverables Spring 2007 CLIENT SURVEY Who are you? Shauna Vey, CLASP Council President Alan Winson, CLASP Council Vice President Business or organization name and location:

More information

The colophon Package, v1.1

The colophon Package, v1.1 The colophon Package, v1.1 Donald P. Goodman III June 3, 2018 Abstract The colophon is fascinating to anyone even slightly interested in typography and document design; and yet incredibly, the best document

More information

This is the Title of the Thesis

This is the Title of the Thesis This is the Title of the Thesis This is the Thesis Subtitle if Necessary The Full Name of the Author Goes Here Thesis to obtain the Master of Science Degree in Information Systems and Computer Engineering

More information

FARÉCLA TRADE BRAND GUIDELINES

FARÉCLA TRADE BRAND GUIDELINES FARÉCLA TRADE BRAND GUIDELINES FARÉCLA TRADE BRAND GUIDELINES. WHY BRAND GUIDELINES ARE IMPORTANT? These brand guidelines are to be used to control the look and feel of Farécla s visual apperance. They

More information

OCTOBER 16 NEWSLETTER. Lake Mayfield Campground OR-LOW GOOD TIMES

OCTOBER 16 NEWSLETTER. Lake Mayfield Campground OR-LOW GOOD TIMES a OR-LOW GOOD TIMES OCTOBER 16 NEWSLETTER Lake Mayfield Campground by Nan O. The October camp out was a joint adventure with hosts Nor West LoWs. We arrived on Monday, October 10 th and stayed three nights.

More information

Posters guidelines APRIL 2017

Posters guidelines APRIL 2017 Posters guidelines APRIL 017 Crédits photos : Total / Damien Malfère (Antreprises) / Michel Labelle The posters The posters / Formats The Group s graphic style draws its strength from consistent application

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

RHYMES WITH HAPPIER!

RHYMES WITH HAPPIER! RHYMES WITH HAPPIER! Title Subtitle Date Title Subtitle Date Title Subtitle Date Title Subtitle Date WHO AM I? First Last Body copy Quick Facts about Zapier HQ: San Francisco, CA 100% Remote 145 Employees

More information

The rjlpshap class. Robert J Lee July 9, 2009

The rjlpshap class. Robert J Lee July 9, 2009 The rjlpshap class Robert J Lee latex@rjlee.homelinux.org July 9, 2009 1 Introduction This package provides low-level helper macros and environments. It is intended for authors of L A TEX packages, who

More information

Duralok Fence System Standard for Style Guide

Duralok Fence System Standard for Style Guide Duralok Fence System Standard for Style Guide The innovation that s dividing the nation. Introduction About the Duralok Brand The Standard for Style Guide is designed to help everybody in the production

More information

Overly Companies (OSA, BRICO)

Overly Companies (OSA, BRICO) Overly Companies (OSA, BRICO) Website Redesign & Development Functional Wireframes Version 1.1 2016 All Rights Reserved. Overly Companies Website Redesign and Development Functional Wireframes, V.1.1 2

More information

Natick High Web Design

Natick High Web Design C S 5 INTRODUCTION TO WEB DESIGN DREAMWEAVER Natick High Web Design S h a r L e a r n Explore e Creating a Page in Dreamweaver A D O B E C R E AT I V E Dreamweaver SUITE CS5 Adobe Dreamweaver is primarily

More information

ADOBE 9A Adobe Dreamweaver CS4 ACE.

ADOBE 9A Adobe Dreamweaver CS4 ACE. ADOBE 9A0-090 Adobe Dreamweaver CS4 ACE http://killexams.com/exam-detail/9a0-090 ,D QUESTION: 74 You use an image throughout your Web site. You want to be able to add this image to various Web pages without

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

CSS means Cascading Style Sheets. It is used to style HTML documents.

CSS means Cascading Style Sheets. It is used to style HTML documents. CSS CSS means Cascading Style Sheets. It is used to style HTML documents. Like we mentioned in the HTML tutorial, CSS can be embedded in the HTML document but it's better, easier and neater if you style

More information

Creating your first website Part 4: Formatting your page with CSS

Creating your first website Part 4: Formatting your page with CSS Adobe - Developer Center : Creating your first website Part 4: Formatting your page... Page 1 of 23 Dreamweaver Article Creating your first website Part 4: Formatting your page with CSS Jon Varese Adobe

More information

Certified Organisation logo guidelines. Version 1.0 April 2018

Certified Organisation logo guidelines. Version 1.0 April 2018 Certified Organisation logo guidelines Colour logo for use on white or clear backgrounds Logo overview The TEC Quality logo is an important part of our visual identity. The logo communicates that quality

More information