CSS Vocabulary and Grammar Basics

Size: px
Start display at page:

Download "CSS Vocabulary and Grammar Basics"

Transcription

1 CSS Vcabulary and Grammar Basics CSS Stands fr Cascading Style Sheet CSS is a language system that allws yu t define the presentatin f elements in HTML The Presentatin f HTML elements has tw aspects t it: Frmatting the way an element appears. Examples f this wuld be the fnt a piece a text is displayed in r a brder placed arund an image. Psitining the way an element fits int a dcument. Fr example hw a sidebar is psitined in a dcument There are three types f styles that can be used in HTML dcuments: Tag styles this type f style cntrls the presentatin f HTML elements frmatted with a particular tag. Fr example a p tag style cntrls the frmatting f a paragraph. Class styles A class is a style that can be applied t any HTML element. It is applied by adding the class attribute t an HTML element. Fr example yu culd create a class style called blue-text that frmats the element it is applied t with a blue fnt clr regardless f the tag it is applied t <h1 class= blue-text > and <p class= blue-text> will frmat bth elements as blue text. ID styles An ID style is a style that is applied t an element n an HTML page. Since an ID can nly be applied t ne element n a page it is a unique style fr the element. Fr example <div id= sidebar > wuld apply the sidebar style t the div that references it. CSS Style names are case sensitive. class= bluetext is different frm class= bluetext There are three different lcatins styles can be defined in: Inline this is when a style is defined within the element it affects. Yu can nly define class styles in this way nt tag r id styles. Inline styles are almst never used because f varius limitatins and prblem assciated with them. Internal this is when a style is defined in the <head> sectin f the HTML dcument and then applied t elements in the <bdy> sectin. Yu can define tag, id and class styles as internal styles. Internal styles avid sme f the issues related t inline styles but still have significant limitatins are nt cnsidered best practice when wrking with styles. External External styles are styles defined in a separate dcument and then HTML pages are linked t this separate files. External style sheets allw fr the full benefit f styles and are the best way t wrk with styles.

2 When yu define a style yu name them with the fllwing rules: Class styles prefix the style with a. perid. S the class style bluetext wuld be named as.bluetext ID styles are prefixed with the # number symbl. S the id style sidebar wuld be defined as #sidebar Tag styles d nt have a prefix and are written with the plan tag name such as p r h1 CSS styles are written in a specific frmat: stylename { prperty:value; prperty:value; prperty:value; } The stylename is fllwed by a space and then an pening curly bracket { On the next line yu will enter in a prperty-value statement. The prperty is separated frm the value by a cln : The statement ends after the value with a semicln ; On the final line yu will place a clsing curly bracket } Yu can have as many r few prperty values statements as yu need in a single style. Remember t end each prperty value statement with a semicln ; Yu can grup multiple selectrs tgether t frmat them with the same style by separating the different selectrs with cmmas h1, h2, h3 { clr:blue; fnt-weight:bld; } This wuld make the tags <h1>, <h2> and <h3> all blue and bld. Yu can specify a a parent child relatinship t select particular tags and frmat them with a style. Fr example if yu wanted t make <li> blue and bld but nly list items cntained in <l> rdered lists nt <ul> unrdered list yu wuld use the fllwing frmat: l li { clr:blue; fnt-weight:bld; } This targets any <li> tags that are cntained r are children f <l> tags. Prperties are characteristics f an element. Fr example text can have a fnt-family prperty, a fnt-size prperty and a clr prperty. Every HTML element has many prperties. The value is the setting fr the prperty. Fr example the text prperty fnt-size culd have the value 24px and the text prperty clr culd have the value blue.

3 There are a variety f acceptable units f measurement is CSS Pixels: This is the standard fixed unit fr measurement fr stylesheets intended fr screens. It is abbreviated px. Fr example a fnt size can be expressed as 24px Percentages: Yu can als use percentages as a prprtinal unit f measurement. Fr example yu culd express that the width f a layut take up 100% f the screen. Ems: A em is a prprtinal unit f measurement that is relative t the base line f the element being measured. This is expressed in the frm 10em Pints: The standard unit f measurement fr print targeted stylesheets. This is the same as the pints used in wrd prcessrs. Fr example if yu create a print style sheet yu culd express the standard paragraph fnt size as 12pt Clrs can be expressed in a variety f ways. Nrmally clrs are expressed in hexadecimal frmat in a three part part tw digit frmat prefixed by a number sign #. Each place in the clr cde can have a value between zer 0 and fifteen 15. Ten is represented by the letter A, Eleven by the letter B and s n. Fr example the standard clr blue link clr culd be expressed as #0000FF This six digit cde represents an RGB (red, green, blue) clr value and is divided int three tw digit parts. The first tw digits represent Red, the secnd tw digits Green, and the final tw digits Blue. In the RGB clr mdel zer 0 is the absent f clr. The value fifteen 15 represented by the letter F represents the clr being turned up t maximum. Fr example #FF0000 is a bright red, #00FF00 is a bright green, #0000FF is a bright blue. Black is the absent f all clr s it is represented by the value # and white is represented by all the clr values turned t maximum #FFFFFF If a clr value has the same value fr each f the places in the tw digits sets it can be abbreviated. S the value # can be expressed as #369. This is pssible but nt necessary.

4 The CSS Bx Mdel The CSS Bx mdel is a frm that represents hw spacing is added arund bjects. The mdel has three different values: Padding, Brder, and Margin. The padding is the area between the bject and any brder arund the bject. The margin is the space between the brder arund the bject and the bjects surrunding the bject.

5 CSS Prperties Vcabulary List Text Prperties fnt-family fnt-size fnt-weight fnt-style clr line-height text-align text-decratin The is the fnt the text will be displayed in. Can have multiple values. Subsequent values will be used if the preceding fnt is nt available n the visitr s cmputer This is the fnt size text is displayed in. This is the prperty t set a fnt weight t either bld r nrmal This is the prperty t set a fnt style t italics r nrmal The clr f the text The line spacing in between lines f text. The alignment f text The underline and underline style n text and links Bx Mdel Prperties width height padding The width f an bject The height f an bject The spacing between an bject and the brder (if any) arund the bject. Yu can specify the lcatin f the padding fr example yu can use the prperty - padding-left, padding-right, padding-tp, padding-bttm. If nly ne value is given fr the padding it is applied t all sides f the bject. Fr example padding:10px; wuld place ten pixels f padding n all sides f an bject. If tw values are given fr the padding it is applied t the tp and bttm and the left and right side f an bject. Fr example padding:10px 20px; wuld apply 10px t bth the tp and bttm and 20px n the left and right f an bject. If fur values are given fr the padding, it is applied t the tp, right, bttm and left sides f an bject (clckwise). Fr example: padding:10px 4px 8px 12px; margin brder The spacing between the brder arund an bject. Fllws the same rules as the padding prperty. Applies a brder arund an bject. Requires three values: width, clr and style. Fr example brder:1px # slid; wuld apply a 1px black slid brder arund the bject. If yu wish t specify a particular side f an bject t apply the brder t yu can use brder-tp:1px # slid;, etc just as yu can specify a side f an bject fr padding and margin. Other Prperties list-style-type backgrund-image The bulleting r numbering style fr an rdered r unrdered list The prperty that sets an image as a backgrund fr an bject

6 backgrund-repeat backgrund-clr display flat clear The prperty that specifies if an image backgrund repeats hrizntally r vertically r bth. The backgrund clr fr an bject Cntrls the way a brwser displays an element. The tw standard values are display:blck;, display:inline; and display:nne The value nne will cause an element nt t be displayed. The value blck frces an element t display as a blck level element and allws fr CSS bx mdel prperties t be applied. The value inline causes an element t be displayed as an inline level element. Inline element d nt have breaks after them and cannt have bx mdel prperties applied t them. Remves an element frm the nrmal flw f elements in a dcument causes it t flat either left r right. Fr example a left side navigatin sidebar wuld be flated t the left t allw the cntent area t be displayed t the right. Returns an element t the nrmal flw f the dcument after a flated element

Basic HTML Vocabulary Rules

Basic HTML Vocabulary Rules Basic HTML Vcabulary Rules Belw yu will find an essential list f HTML tags and attributes and their meanings. HTML: An acrnym fr Hypertext Markup Language HTML Element: An HTML element is an individual

More information

Responsive Design Fundamentals Chapter 1: Chapter 2: name content

Responsive Design Fundamentals Chapter 1: Chapter 2: name content Lynda.cm Respnsive Design Fundamentals Chapter 1: Intrducing Respnsive Design Respnsive design is a design strategy that is centered n designing yur cntent s that it respnds t the envirnment its encuntered

More information

DIRECT DATA EXPORT (DDE) USER GUIDE

DIRECT DATA EXPORT (DDE) USER GUIDE 2 ND ANNUAL PSUG-NJ CONFERNCE PSUG-NJ STUDENT MANAGEMENT SYSTEM DIRECT DATA EXPORT (DDE) USER GUIDE VERSION 7.6+ APRIL, 2013 FOR USE WITH POWERSCHOOL PREMIER VERSION 7.6+ Prepared by: 2 TABLE OF CONTENTS

More information

Dreamweaver MX 2004. Templates

Dreamweaver MX 2004. Templates Dreamweaver MX 2004 Templates Table f Cntents Dreamweaver Templates... 3 Creating a Dreamweaver template... 3 Types f template regins... 4 Inserting an editable regin... 4 Selecting editable regins...

More information

Co. Cavan VEC. Programme Module for. Web Design. leading to. Level 4 FETAC. Web Design 4N1122

Co. Cavan VEC. Programme Module for. Web Design. leading to. Level 4 FETAC. Web Design 4N1122 C. Cavan VEC C. Cavan VEC Prgramme Mdule fr Web Design leading t Level 4 FETAC Web Design 4N1122 Web Design 4N1122 AMENDED APRIL 2013 1 C. Cavan VEC Intrductin This prgramme mdule may be delivered as a

More information

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates

David Drivers Revit One-sheets: Linked Project Positioning and shared coordinates This paper discusses the fllwing features f Revit Building Shared Crdinates Named lcatins Publish and acquire Vs Saving lcatins Shared Crdinates and wrkset enabled files Revisin 1 (Versin 9.0) David Driver.

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

Website Editor Guide

Website Editor Guide Asbru Ltd Asbru Ltd wwwasbrusftcm inf@asbrusftcm Asbru Web Cntent Easily & Inexpensively Create, Publish & Manage Yur Websites 1 September 2010 Versin 73 Cpyright and Prprietary Infrmatin Cpyright Asbru

More information

TRAINING GUIDE. Crystal Reports for Work

TRAINING GUIDE. Crystal Reports for Work TRAINING GUIDE Crystal Reprts fr Wrk Crystal Reprts fr Wrk Orders This guide ges ver particular steps and challenges in created reprts fr wrk rders. Mst f the fllwing items can be issues fund in creating

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

Space Exploration Classroom Activity

Space Exploration Classroom Activity Space Explratin Classrm Activity The Classrm Activity intrduces students t the cntext f a perfrmance task, s they are nt disadvantaged in demnstrating the skills the task intends t assess. Cntextual elements

More information

Integrated Data & Reporting

Integrated Data & Reporting Integrated Data & Reprting Integrated Data & Reprting Team idr@ithelp.uregn.edu idr.uregn.edu Table f Cntents Reprt Standards Checklist... 4 Terms t knw... 4 Unlcking a Reprt... 4 Page Header... 4 Header

More information

Virtual Meetings and Virtual Teams Using Technology to Work Smarter

Virtual Meetings and Virtual Teams Using Technology to Work Smarter http://www.psu.edu/president/pia/innvatin/ INNOVATION INSIGHT SERIES NUMBER 9 Virtual Meetings and Virtual Teams Using Technlgy t Wrk Smarter Yu need t have a meeting. Sme f the peple yu d like t include

More information

learndirect Test Information Guide The National Test in Adult Numeracy

learndirect Test Information Guide The National Test in Adult Numeracy learndirect Test Infrmatin Guide The Natinal Test in Adult Numeracy 1 Cntents The Natinal Test in Adult Numeracy: Backgrund Infrmatin... 3 What is the Natinal Test in Adult Numeracy?... 3 Why take the

More information

ITNP43: HTML Lecture 4

ITNP43: HTML Lecture 4 ITNP43: HTML Lecture 4 1 Style versus Content HTML purists insist that style should be separate from content and structure HTML was only designed to specify the structure and content of a document Style

More information

Consumer Complaint Roadmap

Consumer Complaint Roadmap Cnsumer Cmplaint Radmap Step 1. What yu shuld knw befre yu begin. Refund and Exchange Plicies The nly case where a cnsumer has the abslute right t a return is when there is a defect in the prduct. Mst

More information

Usability and Website Design. Aaron Ruggiero. When designing websites, users should be the main focus throughout the

Usability and Website Design. Aaron Ruggiero. When designing websites, users should be the main focus throughout the Usability and Website Design Aarn Ruggier When designing websites, users shuld be the main fcus thrughut the website design prcess. When an expert designs a website their creatin will seem simple t them.

More information

PIERCE O R G / C C U S E R S

PIERCE O R G / C C U S E R S Radmap Drawings HOW-TO GUIDE PIERCE This dcument is designed t train cmmunity cllege users f the Career Pathways Radmap Web Tl thrugh: the steps f initial lg in t the Web Tl; creating, editing and managing

More information

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide

HarePoint HelpDesk for SharePoint. For SharePoint Server 2010, SharePoint Foundation 2010. User Guide HarePint HelpDesk fr SharePint Fr SharePint Server 2010, SharePint Fundatin 2010 User Guide Prduct versin: 14.1.0 04/10/2013 2 Intrductin HarePint.Cm (This Page Intentinally Left Blank ) Table f Cntents

More information

SelectSurvey.NET User Manual Table of Contents

SelectSurvey.NET User Manual Table of Contents User Manual SelectSurvey.NET User Manual Table f Cntents User Manual 1 SelectSurvey.NET User Manual Table f Cntents 2 Creating Surveys 4 Designing Surveys 4 Templates 5 Libraries 6 Questin Item Types 7

More information

Outlook Plug-In. Send Conference Invites from Outlook. Downloading Outlook Plug-In CONFERENCING & COLLABORATION RESERVATIONLESS-PLUS

Outlook Plug-In. Send Conference Invites from Outlook. Downloading Outlook Plug-In CONFERENCING & COLLABORATION RESERVATIONLESS-PLUS USER GUIDE Outlk Plug-In Send Cnference Invites frm Outlk Scheduling cnference calls and always typing in the same dial-in number and cnference cde can be a bit tedius, especially when yu re in a hurry.

More information

e-qip Online Checklist

e-qip Online Checklist U.S. Custms and Versin 3.03 Brder Prtectin e-qip Online Checklist Please cmplete each step in the rder listed belw befre submitting yur e-qip frms. If yu fail t cmplete these steps in rder, yu will delay

More information

WORKING WITH THE PROFESSIONAL ELECTRONIC PORTFOLIO TEMPLATE (EPT) TECHNICAL INSTRUCTIONS

WORKING WITH THE PROFESSIONAL ELECTRONIC PORTFOLIO TEMPLATE (EPT) TECHNICAL INSTRUCTIONS WORKING WITH THE PROFESSIONAL ELECTRONIC PORTFOLIO TEMPLATE (EPT) TECHNICAL INSTRUCTIONS 2013 Vanderbilt University. All rights reserved. Inquiries: Center fr Advanced Practice Nursing (615) 322-4664 T:\Prjects\Electrnic

More information

Picture Menu Web Part. AMREIN ENGINEERING AG Version 1.0

Picture Menu Web Part. AMREIN ENGINEERING AG Version 1.0 Picture Menu Web Part AMREIN ENGINEERING AG Versin 1.0 March 2012 Descriptin The Picture Menu Web Part displays the List items cntained in the specified Sharepint List.r Picture Library as a vertical r

More information

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com Essential HTML & CSS for WordPress Mark Raymond Luminys, Inc. 949-654-3890 mraymond@luminys.com www.luminys.com HTML: Hypertext Markup Language HTML is a specification that defines how pages are created

More information

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18)

MiaRec. Performance Monitoring. Revision 1.1 (2014-09-18) Revisin 1.1 (2014-09-18) Table f Cntents 1 Purpse... 3 2 Hw it wrks... 3 3 A list f MiaRec perfrmance cunters... 4 3.1 Grup MiaRec Statistics... 4 3.2 Grup MiaRec Call Statistics Per-State... 5 3.3 Grup

More information

Topic: Import MS Excel data into MS Project Tips & Troubleshooting

Topic: Import MS Excel data into MS Project Tips & Troubleshooting Tpic: Imprt MS Excel data int MS Prject Tips & Trubleshting by Ellen Lehnert, MS Prject MVP, PMP, MCT, MCP www.lehnertcs.cm April, 2014 There are several things yu shuld be aware f regarding the imprt

More information

Arjun V. Bala Page 25

Arjun V. Bala Page 25 15) Explain JSP unified Expressin Language (EL). (May-13, Jun-12) EL is a language that allws JSP prgrammers t fetch applicatin data stred in JavaBeans cmpnent. The fllwing methds are used t call the java

More information

Banner Rotator Web Part. AMREIN ENGINEERING AG Version 1.0

Banner Rotator Web Part. AMREIN ENGINEERING AG Version 1.0 Banner Rtatr Web Part AMREIN ENGINEERING AG Versin 1.0 March 2010 Descriptin The Banner Rtatr Web Part rtates the image files cntained in the specified Sharepint Picture Library. The Web Part can be used

More information

Connecting to Email: Live@edu

Connecting to Email: Live@edu Cnnecting t Email: Live@edu Minimum Requirements fr Yur Cmputer We strngly recmmend yu upgrade t Office 2010 (Service Pack 1) befre the upgrade. This versin is knwn t prvide a better service and t eliminate

More information

Cork Education and Training Board. Programme Module for. Web Design. leading to. Level 4 FETAC

Cork Education and Training Board. Programme Module for. Web Design. leading to. Level 4 FETAC Crk Educatin and Training Bard Crk Educatin and Training Bard Prgramme Mdule fr Web Design leading t Level 4 FETAC February 2013 1 Crk Educatin and Training Bard Intrductin This prgramme mdule may be delivered

More information

Welcome to Microsoft Access Basics Tutorial

Welcome to Microsoft Access Basics Tutorial Welcme t Micrsft Access Basics Tutrial After studying this tutrial yu will learn what Micrsft Access is and why yu might use it, sme imprtant Access terminlgy, and hw t create and manage tables within

More information

Tipsheet: Sending Out Mass Emails in ApplyYourself

Tipsheet: Sending Out Mass Emails in ApplyYourself GEORGETOWN GRADUATE SCHOOL Tipsheet: Sending Out Mass Emails in ApplyYurself In ApplyYurself (AY), it is very simple and easy t send a mass email t all f yur prspects, applicants, r students with applicatins

More information

IT Quick Reference Guides Using Outlook 2011 for Mac for Faculty and Staff

IT Quick Reference Guides Using Outlook 2011 for Mac for Faculty and Staff IT Quick Reference Guides Using Outlk 2011 fr Mac fr Faculty and Staff Outlk Guides This guide cvers using Outlk 2011 fr Mac fr SU faculty and staff n campus cmputers. This des nt cver using Outlk 2011

More information

How To Configure A GSM Modem Using HyperTerminal

How To Configure A GSM Modem Using HyperTerminal Handling a cmplex wrld. Hw T Cnfigure A GSM Mdem Using HyperTerminal Intrductin This dcument prvides a brief descriptin f hw t cnfigure a GSM mdem using the Windws HyperTerminal utility. Please cnsult

More information

Outline of CSS: Cascading Style Sheets

Outline of CSS: Cascading Style Sheets Outline of CSS: Cascading Style Sheets nigelbuckner 2014 This is an introduction to CSS showing how styles are written, types of style sheets, CSS selectors, the cascade, grouping styles and how styles

More information

Web Design and Databases WD: Class 7: HTML and CSS Part 3

Web Design and Databases WD: Class 7: HTML and CSS Part 3 Web Design and Databases WD: Class 7: HTML and CSS Part 3 Dr Helen Hastie Dept of Computer Science Heriot-Watt University Some contributions from Head First HTML with CSS and XHTML, O Reilly Recap! HTML

More information

SMART Notebook 11.4. Windows operating systems

SMART Notebook 11.4. Windows operating systems SMART Ntebk 11.4 Windws perating systems User s guide Scan the fllwing QR cde t view the SMART Ntebk sftware Help n yur smart phne r ther mbile device. Trademark ntice SMART Ntebk, SMART Dcument Camera,

More information

ViPNet VPN in Cisco Environment. Supplement to ViPNet Documentation

ViPNet VPN in Cisco Environment. Supplement to ViPNet Documentation ViPNet VPN in Cisc Envirnment Supplement t ViPNet Dcumentatin 1991 2015 Inftecs Americas. All rights reserved. Versin: 00121-04 90 02 ENU This dcument is included in the sftware distributin kit and is

More information

CST 150 Web Design I CSS Review - In-Class Lab

CST 150 Web Design I CSS Review - In-Class Lab CST 150 Web Design I CSS Review - In-Class Lab The purpose of this lab assignment is to review utilizing Cascading Style Sheets (CSS) to enhance the layout and formatting of web pages. For Parts 1 and

More information

Burner Troubleshooting Guide

Burner Troubleshooting Guide IMMEDIATE RESPONSE TECHNOLOGIES, INC. Burner Trubleshting Guide Flash Water Heater (all standard types) Created By: Stefan Swan Infrmatin in this guide was deemed technically accurate at the time f printing.

More information

CSS 101. CSS CODE The code in a style sheet is made up of rules of the following types

CSS 101. CSS CODE The code in a style sheet is made up of rules of the following types CSS 101 WHY CSS? A consistent system was needed to apply stylistic values to HTML elements. What CSS does is provide a way to attach styling like color:red to HTML elements like . It does this by defining

More information

Chalkable Classroom For Students

Chalkable Classroom For Students Chalkable Classrm Fr Students Abut This Dcument This dcument cntains an verview f the Chalkable Classrm Hme Prtal, which is used by students. Table f Cntents Chalkable Classrm Fr Students 1 Abut This Dcument...1

More information

ReCrystallize.com cviewserver Crystal Reports Scheduler Top Issues and Solutions Page 1

ReCrystallize.com cviewserver Crystal Reports Scheduler Top Issues and Solutions Page 1 ReCrystallize.cm cviewserver Crystal Reprts Scheduler Tp Issues and Slutins Page 1 Remember that there are tw applicatins cviewserver which is the Windws Service running in the backgrund n the server and

More information

Website Redesign Knowledge Transfer Document Academic Personnel Services - California State University, Fresno

Website Redesign Knowledge Transfer Document Academic Personnel Services - California State University, Fresno Website Design by Rbin Buttn email Phne: 559.287.9076 FAX: 559.447.1669 Dcument Date: April 22, 2007 Website Redesign Knwledge Transfer Dcument Academic Persnnel Services - Califrnia State University,

More information

Barracuda API 3.0 Firmware Barracuda Spam Firewall

Barracuda API 3.0 Firmware Barracuda Spam Firewall These are instructins t help understand and implement the Barracuda API capability available n the Barracuda Spam Firewall in the versin 3.0 firmware series. This is an extensin f the API released in the

More information

Norwich City Schools Web Design

Norwich City Schools Web Design Nrwich City Schls Overarching The ability t use technlgy effectively, prductively, and ethically has becme an essential skill in almst every aspect f sciety whether at hme, at schl, at wrk, r at play.

More information

Visualization of Student Migration Data Using Google Charts Sankey Diagrams

Visualization of Student Migration Data Using Google Charts Sankey Diagrams Visualizatin f Student Migratin Data Using Ggle Charts Sankey Diagrams Sean V. Hffman Institutinal Research Analyst Office f Institutinal Research, Planning & Effectiveness GOALS Gals T learn the basics

More information

Word 2013: Using Word for Your Research Writing Projects. Last updated: 10/9/2015

Word 2013: Using Word for Your Research Writing Projects. Last updated: 10/9/2015 Wrd 2013: Using Wrd fr Yur Research Writing Prjects Last updated: 10/9/2015 Authrs: Anne Klaczyk, Maureen Hgue, Shari Hill Editrs: Maureen Hgue, Anne Klaczyk, Susan Antnvitz 2008, 2010. 2011, 2013, 2014,

More information

CSE 231 Fall 2015 Computer Project #4

CSE 231 Fall 2015 Computer Project #4 CSE 231 Fall 2015 Cmputer Prject #4 Assignment Overview This assignment fcuses n the design, implementatin and testing f a Pythn prgram that uses character strings fr data decmpressin. It is wrth 45 pints

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet

Custom Portlets. an unbiased review of the greatest Practice CS feature ever. Andrew V. Gamet Custm Prtlets an unbiased review f the greatest Practice CS feature ever Andrew V. Gamet Descriptin In Practice CS, the firm can use any f the fur dashbards t quickly display relative infrmatin. The Firm,

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

electronic newsletter templates and the communication portal for promoting various products and services.

electronic newsletter templates and the communication portal for promoting various products and services. February 2013 GENERIC ESTATES SPONSORSHIP PROPOSAL T Whm it may Cncern: GLOVent Slutins is pleased t prvide yu with a prpsal fr spnsrship n ur Estate Electrnic- Newsletters and Cmmunicatin Prtal as detailed

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

Website Design Worksheet

Website Design Worksheet Website Design Wrksheet The mst crucial and imprtant part f having a website designed, r redesigned is t set gals and decide up frnt what yu want yur website t d. What is the purpse f yur new website?

More information

1 GETTING STARTED. 5/7/2008 Chapter 1

1 GETTING STARTED. 5/7/2008 Chapter 1 5/7/2008 Chapter 1 1 GETTING STARTED This chapter intrduces yu t the web-based UIR menu system. Infrmatin is prvided abut the set up necessary t assign users permissin t enter and transmit data. This first

More information

PS+ Assurance. User Guide Version: 1.0. Page 1

PS+ Assurance. User Guide Version: 1.0. Page 1 PS+ Assurance User Guide Versin: 1.0 Page 1 Overview The PS+ Assurance app gives users a visible check t ensure the prject is cmpliant. There are checks fr issues and risks and als checks fr the plan status.

More information

ICE: HTML, CSS, and Validation

ICE: HTML, CSS, and Validation ICE: HTML, CSS, and Validation Formatting a Recipe NAME: Overview Today you will be given an existing HTML page that already has significant content, in this case, a recipe. Your tasks are to: mark it

More information

Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:

Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,: CSS Tutorial Part 2: Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,: animals A paragraph about animals goes here

More information

Drupal 7 Manual. January 2015. IT Training & Empowerment Geraldine Gerhardi

Drupal 7 Manual. January 2015. IT Training & Empowerment Geraldine Gerhardi Drupal 7 Manual January 2015 IT Training & Empwerment Geraldine Gerhardi Table f Cntents 1. Imprtant ntes... 1 2. Lgging in... 2 3. Starting a page... 3 4. Editing an existing page... 10 4.1. Methd 1 (Selecting

More information

NASDAQ BookViewer 2.0 User Guide

NASDAQ BookViewer 2.0 User Guide NASDAQ BkViewer 2.0 User Guide NASDAQ BkViewer 2.0 ffers a real-time view f the rder depth using the NASDAQ Ttalview prduct fr NASDAQ and ther exchange-listed securities including: The tp buy and sell

More information

Excel Contact Reports

Excel Contact Reports Excel Cntact Reprts v.1.0 Anther efficient and affrdable ACT! Add-On by http://www.expnenciel.cm Excel Cntact Reprts User s Manual 2 Table f cntents Purpse f the add-n... 3 Installatin prcedure... 3 The

More information

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17 Web Design Revision AQA AS-Level Computing COMP2 204 39 minutes 39 marks Page of 7 Q. (a) (i) What does HTML stand for?... () (ii) What does CSS stand for?... () (b) Figure shows a web page that has been

More information

UTO Training Bb Discussion Boards. Technical Assistance: Website: http://help.asu.edu Help Desk Phone: 855.278.5080 (24/7 support) Instruction

UTO Training Bb Discussion Boards. Technical Assistance: Website: http://help.asu.edu Help Desk Phone: 855.278.5080 (24/7 support) Instruction Bb Discussin Bards Technical Assistance: Website: http://help.asu.edu Help Desk Phne: 855.278.5080 (24/7 supprt) Instructin 1. Discussin Bard Basics Instructrs can create frums fr the curse r fr Grups

More information

User Guide Version 3.9

User Guide Version 3.9 User Guide Versin 3.9 Page 2 f 22 Summary Cntents 1 INTRODUCTION... 3 1.1 2 CREATE A NEW ACCOUNT... 4 2.1 2.2 3 NAVIGATION... 3 CREATE AN EMAIL ACCOUNT... 4 CREATE AN ALIAS ACCOUNT... 6 MODIFYING AN EXISTING

More information

IM, Presence, and Contacts

IM, Presence, and Contacts Find smene Lync 2013 Quick Reference IM, Presence, and Cntacts The quickest way t find smene via Lync is t launch a search by typing the persn s name r IM address in the search bx n the Lync main windw.

More information

MACHINE SHOP. Course Design 2005-2006. MET231 to ASU, DEC to NAU, NT to UofA Activity Course

MACHINE SHOP. Course Design 2005-2006. MET231 to ASU, DEC to NAU, NT to UofA Activity Course MACHINE SHOP Curse Design 2005-2006 Curse Infrmatin Organizatin Eastern Arizna Cllege Divisin Industrial Technlgy Educatin Curse Number MSP 104 Title Machine Shp Credits 4 Develped by Dryden Lecture/Lab

More information

How to use your new phone

How to use your new phone Hw t use yur new phne Manufacturer: Mdel: Descriptin: Tshiba DP5022F-SD Digital business telephne with 4-line LCD display. Hearing Aid Cmpatible This page left intentinally blank Cntents Phne layut Adjust

More information

Tips for Using PCB Artist Getting Started

Tips for Using PCB Artist Getting Started Tips fr Using PCB Artist Getting Started Revisin 1 Mre help is available Frm the PCB Artist Tips & Tls Page and via email at layuthelp@4pcb.cm This page is nt intended t replace the Tutrial in PCB Artist,

More information

How To Set Up A General Ledger In Korea

How To Set Up A General Ledger In Korea MODULE 6: RECEIVABLES AND PAYABLES MANAGEMENT: PAYMENT DISCOUNT AND PAYMENT TOLERANCE Mdule Overview Granting payment discunts prvides an incentive fr custmers t quickly pay their utstanding amunts in

More information

KronoDesk Migration and Integration Guide Inflectra Corporation

KronoDesk Migration and Integration Guide Inflectra Corporation / KrnDesk Migratin and Integratin Guide Inflectra Crpratin Date: September 24th, 2015 0B Intrductin... 1 1B1. Imprting frm Micrsft Excel... 2 6B1.1. Installing the Micrsft Excel Add-In... 2 7B1.1. Cnnecting

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

Table of Contents. About... 18

Table of Contents. About... 18 Table f Cntents Abut...3 System Requirements...3 Hw it Wrks...4 Abut... 4 Hw SFA Admin Prtects Data... 4 Hw SFA User Wrks with Prtected Data... 4 Sandbxed Sessin Restrictins... 4 Secure File Access User

More information

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3

Access EEC s Web Applications... 2 View Messages from EEC... 3 Sign In as a Returning User... 3 EEC Single Sign In (SSI) Applicatin The EEC Single Sign In (SSI) Single Sign In (SSI) is the secure, nline applicatin that cntrls access t all f the Department f Early Educatin and Care (EEC) web applicatins.

More information

Hinsdale High School. Hinsdale, New Hampshire. Topics/Activities/Content Standards Assessment/Skills

Hinsdale High School. Hinsdale, New Hampshire. Topics/Activities/Content Standards Assessment/Skills Hinsdale High Schl Hinsdale, New Hampshire Teacher: C. Hyer Curse Name: Web Design Objective: Students will learn hw t design Web sites. Included are site planning, page layut, graphic design and the use

More information

MATHEMATICS FOR ENGINEERING TRIGONOMETRY TUTORIAL 1 TRIGONOMETRIC RATIOS, TRIGONOMETRIC TECHNIQUES AND GRAPHICAL METHODS

MATHEMATICS FOR ENGINEERING TRIGONOMETRY TUTORIAL 1 TRIGONOMETRIC RATIOS, TRIGONOMETRIC TECHNIQUES AND GRAPHICAL METHODS MATHEMATICS FOR ENGINEERING TRIGONOMETRY TUTORIAL 1 TRIGONOMETRIC RATIOS, TRIGONOMETRIC TECHNIQUES AND GRAPHICAL METHODS This is the ne f a series f basic tutrials in mathematics aimed at beginners r anyne

More information

Training Script: Documenting Provider

Training Script: Documenting Provider Training Script: Dcumenting Prvider Training Script: Dcumenting Prvider Agenda Item Intrductin Lg int Cmputer EMR Mdule Desktp Mdule Review Desktp and EMR in Meditech Test CPOE Sessin 1 Discussin Intrduce

More information

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)?

Frequently Asked Questions November 19, 2013. 1. Which browsers are compatible with the Global Patent Search Network (GPSN)? Frequently Asked Questins Nvember 19, 2013 General infrmatin 1. Which brwsers are cmpatible with the Glbal Patent Search Netwrk (GPSN)? Ggle Chrme (v23.x) and IE 8.0. 2. The versin number and dcument cunt

More information

Yearbook Wizard User Manual

Yearbook Wizard User Manual Yearbk Wizard User Manual System Requirements Prir t lgging in, yur cmputer will be checked fr all f the necessary System Requirements. Yearbk Wizard will als infrm yu f any plug-ins that yu will need

More information

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest:

Access to the Ashworth College Online Library service is free and provided upon enrollment. To access ProQuest: PrQuest Accessing PrQuest Access t the Ashwrth Cllege Online Library service is free and prvided upn enrllment. T access PrQuest: 1. G t http://www.ashwrthcllege.edu/student/resurces/enterlibrary.html

More information

Selectors in Action LESSON 3

Selectors in Action LESSON 3 LESSON 3 Selectors in Action In this lesson, you will learn about the different types of selectors and how to use them. Setting Up the HTML Code Selectors are one of the most important aspects of CSS because

More information

Application Note: 202

Application Note: 202 Applicatin Nte: 202 MDK-ARM Cmpiler Optimizatins Getting the Best Optimized Cde fr yur Embedded Applicatin Abstract This dcument examines the ARM Cmpilatin Tls, as used inside the Keil MDK-ARM (Micrcntrller

More information

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents

BRILL s Editorial Manager (EM) Manual for Authors Table of Contents BRILL s Editrial Manager (EM) Manual fr Authrs Table f Cntents Intrductin... 2 1. Getting Started: Creating an Accunt... 2 2. Lgging int EM... 3 3. Changing Yur Access Cdes and Cntact Infrmatin... 3 3.1

More information

Annex 3. Specification of requirement. Surveillance of sulphur-emissions from ships in Danish waters

Annex 3. Specification of requirement. Surveillance of sulphur-emissions from ships in Danish waters Annex 3 Specificatin f requirement Surveillance f sulphur-emissins frm ships in Danish waters 1 Cntent 1 Objective... 3 2 Prject Perid... 4 3 Psitin and Planning f Measurements... 4 3.1 Mnitring frm a

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 2

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 2 Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl Web Design in Nvu Workbook 2 CSS stands for Cascading Style Sheets, these allow you to specify the look and feel of your website. It also helps with consistency.

More information

STIOffice Integration Installation, FAQ and Troubleshooting

STIOffice Integration Installation, FAQ and Troubleshooting STIOffice Integratin Installatin, FAQ and Trubleshting Installatin Steps G t the wrkstatin/server n which yu have the STIDistrict Net applicatin installed. On the STI Supprt page at http://supprt.sti-k12.cm/,

More information

Chris Chiron, Interim Senior Director, Employee & Management Relations Jessica Moore, Senior Director, Classification & Compensation

Chris Chiron, Interim Senior Director, Employee & Management Relations Jessica Moore, Senior Director, Classification & Compensation TO: FROM: HR Officers & Human Resurces Representatives Chris Chirn, Interim Senir Directr, Emplyee & Management Relatins Jessica Mre, Senir Directr, Classificatin & Cmpensatin DATE: May 26, 2015 RE: Annual

More information

Web Design with CSS and CSS3. Dr. Jan Stelovsky

Web Design with CSS and CSS3. Dr. Jan Stelovsky Web Design with CSS and CSS3 Dr. Jan Stelovsky CSS Cascading Style Sheets Separate the formatting from the structure Best practice external CSS in a separate file link to a styles from numerous pages Style

More information

Instructor: Subject: Science Grade 6

Instructor: Subject: Science Grade 6 Instructr: Subject: Science Grade 6 Essential Questin: Egg Flat (A Density Experiment) Time Frame: 40 minutes Date: Wuld yu rather be shipwrecked in the middle f a Great Lake (fresh water) r the cean?

More information

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors Using Sentry-g Enterprise/ASPX fr Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, February, 2014 http://www.sentry-g.cm Be Practive, Nt Reactive! Intrductin Sentry-g Enterprise Reprting is a self-cntained

More information

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure

More information

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University Web Design Basics Cindy Royal, Ph.D. Associate Professor Texas State University HTML and CSS HTML stands for Hypertext Markup Language. It is the main language of the Web. While there are other languages

More information

Introduction to Mindjet MindManager Server

Introduction to Mindjet MindManager Server Intrductin t Mindjet MindManager Server Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 mindjet.cm 2013 Mindjet. All Rights

More information

Indicator Details Page

Indicator Details Page Indicatr Details Page Interactin Dcument Versin Date Owner Changes/Updates 0.1. 8/17/11 Nick Quintanilla - Initial dcument draft 0.1.1 9/1/11 Ian Oliver - Updated with feedback frm 8/30/11 Related Dcuments:

More information

CHAPTER 26: INFORMATION SEARCH

CHAPTER 26: INFORMATION SEARCH Chapter 26: Infrmatin Search CHAPTER 26: INFORMATION SEARCH AVImark allws yu t lcate r target a variety f infrmatin in yur data including clients, patients, Medical Histry, and accunting. The data can

More information

TRAINING GUIDE. Web Apps Dashboard Setup Training

TRAINING GUIDE. Web Apps Dashboard Setup Training TRAINING GUIDE Web Apps Dashbard Setup Training Web Applicatins Dashbard Setup Training In this bklet, we ll intrduce yu t the Dashbard. We ll prvide yu with detailed instructins n creating custmized Dashbard

More information

Adding Slideshare Presentations

Adding Slideshare Presentations Blackbard 9.1 Quick Start Guide Adding Slideshare Presentatins Slideshare presentatins can be added t curse cntent frm tw different lcatins: the Build Cntent area in Cntent mdules and mst text areas thrughut

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

Using Style Sheets for Consistency

Using Style Sheets for Consistency Cascading Style Sheets enable you to easily maintain a consistent look across all the pages of a web site. In addition, they extend the power of HTML. For example, style sheets permit specifying point

More information