html head meta meta link title title head body div header header main main footer © footer div body html

Size: px
Start display at page:

Download "html head meta meta link title title head body div header header main main footer © footer div body html"

Transcription

1 bootstrap.html 3 <!-- Demonstrates Bootstrap --> 7 8 <meta charset="utf-8"/> 9 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/> <link href=" rel="stylesheet" /> 1 <title>bootstrap</title> 13 1 </head> 15 <body> 16 <div class="container"> 17 <header> 18 John Harvard 19 </header> 0 <main> 1 Welcome to my home page! </main> 3 <footer> Copyright John Harvard 5 </footer> 6 7 </div> 8 </body> 9 </html>

2 css0.html 3 <!-- Demonstrates inline CSS --> 7 <title>css0</title> 10 <header style="font-size: large; text-align: center;"> 11 John Harvard 1 </header> 13 <main style="font-size: medium; text-align: center;"> 1 Welcome to my home page! 15 </main> 16 <footer style="font-size: small; text-align: center;"> 17 Copyright John Harvard 18 </footer> 19 </body> 0 </html>

3 css1.html 3 <!-- Demonstrates inheritance --> 7 <title>css1</title> 9 <body style="text-align: center;"> 10 <header style="font-size: large;"> 11 John Harvard 1 </header> 13 <main style="font-size: medium;"> 1 Welcome to my home page! 15 </main> 16 <footer style="font-size: small;"> 17 Copyright John Harvard 18 </footer> 19 </body> 0 </html>

4 css.html 3 <!-- Demonstrates CSS classes --> 7 <style> 8 9.centered 10 { 11 text-align: center; 1 } 13 1.large 15 { 16 font-size: large; 17 } medium 0 { 1 font-size: medium; } 3.small 5 { 6 font-size: small; 7 } 8 9 </style> 30 <title>css</title> 31 </head> 3 <body class="centered"> 33 <header class="large"> 3 John Harvard 35 </header> 36 <main class="medium"> 37 Welcome to my home page! 38 </main> 39 <footer class="small"> 0 Copyright John Harvard 1 </footer> </body> 3 </html>

5 css3.html 3 <!-- Demonstrates CSS selectors --> 7 <style> 8 9 body 10 { 11 text-align: center; 1 } 13 1 header 15 { 16 font-size: large; 17 } main 0 { 1 font-size: medium; } 3 footer 5 { 6 font-size: small; 7 } 8 9 </style> 30 <title>css3</title> 31 </head> 3 <body> 33 <header> 3 John Harvard 35 </header> 36 <main> 37 Welcome to my home page! 38 </main> 39 <footer> 0 Copyright John Harvard 1 </footer> </body> 3 </html>

6 css.css 1 body { 3 text-align: center; } 5 6 header 7 { 8 font-size: large; 9 } main 1 { 13 font-size: medium; 1 } footer 17 { 18 font-size: small; 19 }

7 css.html 3 <!-- Demonstrates external stylesheets --> 7 <link href="css.css" rel="stylesheet"/> 8 <title>css</title> 9 </head> 10 <body> 11 <header> 1 John Harvard 13 </header> 1 <main> 15 Welcome to my home page! 16 </main> 17 <footer> 18 Copyright John Harvard 19 </footer> 0 </body> 1 </html>

8 form0.html 3 <!-- Demonstrates form --> 7 <title>form0</title> 10 <h1>frosh IMs</h1> 11 <form> 1 <input name="name" placeholder="name" type="text"/> 13 <select name="dorm"> 1 <option disabled selected value="">dorm</option> 15 <option value="apley Court">Apley Court</option> 16 <option value="canaday">canaday</option> 17 <option value="grays">grays</option> 18 <option value="greenough">greenough</option> 19 <option value="hollis">hollis</option> 0 <option value="holworthy">holworthy</option> 1 <option value="hurlbut">hurlbut</option> <option value="lionel">lionel</option> 3 <option value="matthews">matthews</option> <option value="mower">mower</option> 5 <option value="pennypacker">pennypacker</option> 6 <option value="stoughton">stoughton</option> 7 <option value="straus">straus</option> 8 <option value="thayer">thayer</option> 9 <option value="weld">weld</option> 30 <option value="wigglesworth">wigglesworth</option> 31 </select> 3 <input type="submit" value="register"/> 33 </form> 3 </body> 35 </html>

9 form1.html 3 <!-- Demonstrates Bootstrap --> 7 8 <meta charset="utf-8"> 9 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <! > 1 <link href=" rel="stylesheet" /> 13 1 <title>form1</title> </head> 17 <body> 18 <div class="container"> 19 0 <! <h1 class="display-1">frosh IMs</h1> 3 <! > <form> 5 <div class="form-group"> 6 <label for="exampleformcontrolinput1"> address</label> 7 <input type=" " class="form-control" id="exampleformcontrolinput1" placeholder= "mzuckerb@fas.harvard.edu"> 8 </div> 9 <div class="form-group"> 30 <label for="exampleformcontrolselect1">dorm</label> 31 <select class="form-control" id="exampleformcontrolselect1"> 3 <option disabled selected value=""></option> 33 <option value="apley Court">Apley Court</option> 3 <option value="canaday">canaday</option> 35 <option value="grays">grays</option> 36 <option value="greenough">greenough</option> 37 <option value="hollis">hollis</option> 38 <option value="holworthy">holworthy</option> 39 <option value="hurlbut">hurlbut</option> 0 <option value="lionel">lionel</option> 1 <option value="matthews">matthews</option> <option value="mower">mower</option> 3 <option value="pennypacker">pennypacker</option>

10 <option value="stoughton">stoughton</option> 5 <option value="straus">straus</option> 6 <option value="thayer">thayer</option> 7 <option value="weld">weld</option> 8 </select> 9 </div> 50 <button class="btn btn-primary" type="submit">register</button> 51 </form> 5 53 </div> 5 </body> 55 </html> form1.html

11 headings.html 3 <!-- Demonstrates headings (for chapters, sections, subsections, etc.) --> 7 <title>headings</title> 10 <h1>one</h1> 11 <h>two</h> 1 <h3>three</h3> 13 <h>four</h> 1 <h5>five</h5> 15 <h6>six</h6> 16 </body> 17 </html>

12 hello.html 3 <!-- Demonstrates HTML --> 7 <title>hello, title</title> 10 hello, body 11 </body> 1 </html>

13 image.html 3 <!-- Demonstrates image --> 7 <title>image</title> 10 <! > 11 <img alt="handsome Dan" src="dan.jpg"/> 1 </body> 13 </html>

14 link.html 3 <!-- Demonstrates link --> 7 <title>link</title> 10 Visit <a href=" 11 </body> 1 </html>

15 list.html 3 <!-- Demonstrates (unordered) lists --> 7 <title>list</title> 10 <ul> 11 <li>foo</li> 1 <li>bar</li> 13 <li>baz</li> 1 </ul> 15 </body> 16 </html>

16 paragraphs.html 3 <!-- Demonstrates paragraphs --> 7 <title>paragraphs</title> 10 <p> 11 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in tincidunt augue. Duis imperdiet, justo ac iacu 1 </p> 13 <p> 1 Ut tempus rutrum arcu eget condimentum. Morbi elit ipsum, gravida faucibus sodales quis, varius at mi. Suspendiss 15 </p> 16 <p> 17 Mauris eget erat arcu. Maecenas ac ante vel ipsum bibendum varius. Nunc tristique nulla eget tincidunt molestie. 18 </p> 19 </body> 0 </html>

17 search.html 3 <!-- Demonstrates action --> 7 <title>search</title> 10 <form action=" method="get"> 11 <input name="q" type="text"/> 1 <input type="submit" value="search"/> 13 </form> 1 </body> 15 </html>

18 table.html 3 <!-- Demonstrates table --> 7 <title>table</title> 10 <table> 11 <tr> 1 <td>1</td> 13 <td></td> 1 <td>3</td> 15 </tr> 16 <tr> 17 <td></td> 18 <td>5</td> 19 <td>6</td> 0 </tr> 1 <tr> <td>7</td> 3 <td>8</td> <td>9</td> 5 </tr> 6 <tr> 7 <td>*</td> 8 <td>0</td> 9 <td>#</td> 30 </tr> 31 </table> 3 </body> 33 </html>

html head script script script function function script title title head body form input input form body html

html head script script script function function script title title head body form input input form body html ajax0.html 1 3 4 5 6 7 8 function quote() 9 { 10 $.getjson("/quote", {symbol: $("#symbol").val()},

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

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

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

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

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

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

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

cosmos a tech startup

cosmos a tech startup a tech startup Logo Business Card Lorem Ipsum company director Street name City, State, Zipcode (555) 555-5555 lorem@ipsum.com www.loremipsum.com Lorem ipsum dolor sit amet, consectetur adipiscing elit.

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

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

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

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

Gestures: ingsa GESTURES

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

More information

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

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

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

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

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

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

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

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

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

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

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

For instructions to change the logo, please refer to: ore

For instructions to change the logo, please refer to:   ore Header Phone Number, Email and Menu Links: To change Email and Phone number; Go to Settings -> General -> Store Settings Click on the " Store " tab Scroll down to the " Merchant Information " section of

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

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

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

MBCA Section Newsletter Required Content Guidelines

MBCA Section Newsletter Required Content Guidelines MBCA Section Newsletter The attached newsletter template, developed by the National Business Office of the Mercedes-Benz Club of America along with Mr. Stacy Rollins, Newsletter Committee Chairman, was

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

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

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

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

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.

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

More information

Installing theme in nopcommerce. User Guide NOP4YOU.COM 1

Installing theme in nopcommerce. User Guide NOP4YOU.COM 1 Installing theme in nopcommerce User Guide NOP4YOU.COM 1 List of content: 1. About template... 3 2. How to install... 3 3. Add plugins... 4 4. Set your theme... 6 5. Settings... 7 a. Resources strings...

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

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

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

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

[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

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

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

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

AR0051 content/style. Michelle Bettman Henry Kiksen. Challenge the future

AR0051 content/style. Michelle Bettman Henry Kiksen. Challenge the future AR0051 content/style Michelle Bettman Henry Kiksen Challenge the future 1 AR0051: Digital Presentation Portfolio Today's Programme: A little on HTML/CSS Group-wise mind-map on Content and Style Discussion

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

BOWIE FARMERS MARKET. Anne Bontogon Campaign Bowie Farmers Market

BOWIE FARMERS MARKET. Anne Bontogon Campaign Bowie Farmers Market BOWIE FARMERS MARKET Anne Bontogon Campaign Bowie Farmers Market Research Competition: Bowie Farmers Market is provides fresh produce, fruit, meat and poultry in the Bowie community. Its competitors are

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

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

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

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

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

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

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

Presentation title placeholder, can be two lines Presentation subtitle placeholder. Date placeholder

Presentation title placeholder, can be two lines Presentation subtitle placeholder. Date placeholder Presentation title placeholder, can be two lines Presentation subtitle placeholder Date placeholder Presentation title placeholder Presentation title one line only Presentation subtitle placeholder Date

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

Compassion. Action. Change.

Compassion. Action. Change. DRAFT GRAPHIC STANDARDS GUIDE Contents 3 Overview 4 Tagline 6 Imagery 7 Identity Overview 8 CalMHSA Logo 10 Logo Usage 12 CalMHSA Logo Configurations 14 Color Palette 15 Typography 19 Design Samples GRAPHIC

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

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

Brand Guide. Last Revised February 9, :38 PM

Brand Guide. Last Revised February 9, :38 PM Brand Guide Last Revised February 9, 2016 2:38 PM The Trinity brand is current, energetic and strong. Through textures, images, typography and color it has the versatility to be playful and trendy as well

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

IDENTITY STANDARDS LIVINGSTONE COLLEGE DR. JIMMY R. JENKINS, SR. PRESIDENT

IDENTITY STANDARDS LIVINGSTONE COLLEGE DR. JIMMY R. JENKINS, SR. PRESIDENT IDENTITY STANDARDS DR. JIMMY R. JENKINS, SR. PRESIDENT VERSION 1.0 AUGUST 13, 2014 A MESSAGE FROM OUR PRESIDENT Greetings, Blue Bear Family! As President of Livingstone College, it is my duty to ensure

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

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

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

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

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

RML Example 48: Paragraph flow controls

RML Example 48: Paragraph flow controls RML (Report Markup Language) is ReportLab's own language for specifying the appearance of a printed page, which is converted into PDF by the utility rml2pdf. These RML samples showcase techniques and features

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

MyTrials Next Generation Blue Sky Wireframes

MyTrials Next Generation Blue Sky Wireframes MyTrials Next Generation Blue Sky Wireframes A High-Level, Side-by-Side Examination of UX Functionality for Desktops/Laptops vs. Phones 1 >> Introduction Introduction Overall Objectives MyTrials Next Generation

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

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

Wandle Valley Branding Guidelines 1

Wandle Valley Branding Guidelines 1 Wandle Valley Branding Guidelines 1 Produced: November 2013 by Barker Langham 2 Contents Introduction Logo Colour palette Typeface and hierarchy Brand usage Co-branding 4 5 12 14 16 26 3 Introduction Wandle

More information

template guidelines. 1. Visual identity 2. How to build an

template guidelines. 1. Visual identity 2. How to build an Email template guidelines 1. Visual identity 2. How to build an email 1. Visual identity There are four main elements of an email s visual identity: University logo Typography Colour Imagery University

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

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

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

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

LARK BISTRO LOGO & WEBSITE DESIGN PROPOSAL

LARK BISTRO LOGO & WEBSITE DESIGN PROPOSAL LARK BISTRO LOGO & WEBSITE DESIGN PROPOSAL Prepared for: Susan Lark Prepared by: Wes McDowell September 30, 2011 Section 1 Client Background Lark is a startup bistro & wine bar in downtown Seattle. Their

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

BRAND GUIDELINES VAN S AIRCRAFT, INC. VERSION V1.1

BRAND GUIDELINES VAN S AIRCRAFT, INC. VERSION V1.1 BRAND GUIDELINES VAN S AIRCRAFT, INC. VERSION V1.1 0 2. 0 1.19 SECTION 1 INTRODUCTION 2 // BRAND GUIDELINES SECTION 1: INTRODUCTION About This Guide The Van s Aircraft logo is a valuable brand and business

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

Style guide. March 2017 CC BY 4.0 The Tor Project

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

More information

Customer Journey EIV and emsfaa. January 2018

Customer Journey EIV and emsfaa. January 2018 Customer Journey EIV and emsfaa January 2018 1 Electronic Identity Verification (EIV) 2 Step 0 After the student applies and is approved for student financial assistance funding, they receive a Notice

More information

http://nma.kcc.hawaii.edu/gargiulo/data/johndoe/spring/art128/2014/companyname1_step3/index.html 1 2 3 4 5 company Name 6 7

More information

WPBAKERY PAGE BUILDER

WPBAKERY PAGE BUILDER WPBAKERY PAGE BUILDER WHY? 01 02 03 Build complex layouts using a grid system Easy to use drag and drop Easy to develop for 04 Highly customizable 05 High adoption and user base HIGH ADOPTION FORMERLY

More information

KEEPING FAMILIES COMFORTABLE, ALL-YEAR ROUND

KEEPING FAMILIES COMFORTABLE, ALL-YEAR ROUND AT&T 9:41 AM 98% 100% appoloheating.com 877-907-2824 24/7 EMERGENCY SERVICE SEARCH MENU Lorem ipsum dolor sit amet consectetur adipiscing Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum

More information

Abstract. Author summary. Introduction

Abstract. Author summary. Introduction 1 3 4 5 6 7 8 9 10 11 1 13 14 15 16 17 18 19 0 1 3 4 5 6 7 8 9 30 31 3 33 34 35 36 37 38 Abstract sodales vulputate auctor. Nam lacus felis, fermentum sit amet nulla ac, tristique ultrices tellus. Integer

More information

WRAS WIAPS BRAND GUIDELINES 2015

WRAS WIAPS BRAND GUIDELINES 2015 01 WRAS WIAPS BRAND GUIDELINES 2015 02 WRAS PRODUCT APPROVAL CERTIFICATION MARK BRAND GUIDANCE AND TERMS AND CONDITIONS OF USE WRAS LTD. CERTIFICATION MARKS, TRADEMARK AND LOGOS (APPLIES TO ALL END USERS)

More information

Creating Websites without Code. Jesse Clark Manager of Web Communications University of Northern Colorado

Creating Websites without Code. Jesse Clark Manager of Web Communications University of Northern Colorado Creating Websites without Code Jesse Clark Manager of Web Communications University of Northern Colorado Learning Code HTML and CSS Free CodeAcademy.com KhanAcademy.org Tutsplus.com Paid Lynda.com (part

More information

HTML5 Semantic Elements / Information Architecture / Navigation

HTML5 Semantic Elements / Information Architecture / Navigation HTML5 Semantic Elements / Information Architecture / Navigation Introduction to Web Design and Development Class Today Review Midterm (Next Week) Bootstrap Videos HTML Semantics Information Architecture

More information

CSA Website Ad Specifications

CSA Website Ad Specifications CSA Website Ad Specifications General Specifications (all ads) Animation length - 15 seconds max Max three rotations/loops Standard Ads JPEG, GIF and PNG accepted We do not accept tracking pixels, but

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

Getting started with Managana creating for web and mobile devices

Getting started with Managana creating for web and mobile devices Getting started with Managana creating for web and mobile devices Written and compiled by Lucas Junqueira and Marilia Bergamo 4th Edition: August 2013 (Managana 1.6.0) With information from http://www.managana.org

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