Adobe Dreamweaver CS6 Part 3 Create a Liquid Layout Page from A

Total Page:16

File Type:pdf, Size:1020Kb

Adobe Dreamweaver CS6 Part 3 Create a Liquid Layout Page from A Adobe Dreamweaver CS6 Part 3 Create a liquid layout page from a template A liquid layout uses percentages for widths, so columns so are resized for different screen sizes. 1. Create a new page: a. Click File, New… b. Click 3 column liquid, header and footer. c. Set DocType: to HTML 5. d. Layout CSS: should already be set to Create New File. e. Click Create. 2. Save the stylesheet in a new folder: a. Add a folder named 3-column-liquid. b. Double-click the folder. c. Click Save. This saves the stylesheet in the folder. 3. Save the web page in the same folder: a. Click File, Save or press Ctrl-S. b. Double-click the 3-column-liquid folder. c. Name the file index.html. d. Click Save. Preview the page in Dreamweaver 1. Click the Code, Split and Design buttons to switch between the code and/or design views. 2. Click the Live button. This is a more realistic non-editable preview. 3. Click the Live Code button. This shows the code that the Dreamweaver browser actually renders. a. Paste any URL into the address box, and click any element to view the HTML and CSS code. 4. Click the Inspect button. Click CSS Styles, Current. Hover over an element to see its CSS. 5. Click the Multiscreen button and click Multiscreen Preview. Right-click the tab and click Close. Preview in multiple browsers 1. Click the Preview button and click Preview in Firefox, or click File > Preview in Browser > Firefox. a. Drag the right edge of either browser to the left until the window becomes very narrow. Notice that you must now scroll horizontally to see all content. b. Repeat for Internet Explorer (shown as IExplore in the Dreamweaver menus). 2. In Internet Explorer, Press F12 to view or hide the Developer Tools. a. Click Browser Mode and Document Mode. Try IE8, IE7, Compatibility View, Quirks Mode. Adobe Dreamweaver CS6 Part 3 Page 1 of 11 © Copyright 2013 Computer Applications Training, Colorado State University Add responsive design to the page using media queries Components (columns, images, etc.) should automatically rearrange, resize or hide to fit the screen size. 1. Copy (Ctrl-drag) these files from the resources/stylesheets folder into the 3-column-liquid folder: desktop.css, tablet.css, phone.css, boilerplate.css 2. Click the Code button (and Source Code if necessary) to view the source code of the web page. 3. Copy and paste this line of code below the <meta charset tag, for correct sizing in mobile browsers: <meta name="viewport" content="width=device-width, initial-scale=1" /> 4. Copy and paste this line of code above the </head> tag for correct display in Internet Explorer 7-8: <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> 5. Copy and paste this code just below the </title>tag, which links to the boilerplate.css stylesheet: <link href="boilerplate.css" rel="stylesheet" type="text/css" /> Or follow these steps: a. Click the CSS Styles menu. b. Click the All button. c. Right-click the white area below thrColLiqHdr.css. d. Click Attach Style Sheet… e. Click Browse… Double-click boilerplate.css. Click OK. f. Select this link tag in the source code and drag it just below the </title> tag. 6. Copy media-queries.css to the 3-column-liquid folder and add this link below the boilerplate.css link: <link href="media-queries.css" rel="stylesheet" type="text/css" /> Or follow these steps: a. Click the Modify menu and click Media Queries… b. Click the radio button next to Site-wide media query file: media-queries.css. Or click the Specify button, type media-queries.css and click OK. c. Click the Default Presets button. This makes media queries for Phone, Tablet and Desktop. d. Select a Phone stylesheet. i. Click Phone. ii. Next to CSS File:, select Use existing file: iii. Click the folder button and select phone.css. e. Repeat the above step to select a Tablet and Desktop stylesheet. f. Click OK. The media-queries.css stylesheet is created, and a link tag is added to index.html. g. Press Ctrl-S to save your changes. 7. Test that the media queries work for multiple screen sizes in one or two browsers. a. Press F5 to refresh the browser window. b. Drag the right edge of the window left and right. Notice that the columns are rearranged, and horizontal scrolling is reduced or removed. c. Test live pages using actual mobile devices, and Internet Explorer in IE7 and IE8 Modes. Adobe Dreamweaver CS6 Part 3 Page 2 of 11 © Copyright 2013 Computer Applications Training, Colorado State University Adobe Dreamweaver CS6 Part 3 Page 3 of 11 © Copyright 2013 Computer Applications Training, Colorado State University Create a page using the Fluid Grid Layout New in Dreamweaver CS6, the Fluid Grid Layout visually creates layouts for different device sizes. 1. Create a new page. a. Click File, New Fluid Grid Layout… b. Assure that DocType is HTML 5. c. Change the Desktop columns from 10 to 12. d. Click the Create button. 2. Save the stylesheet in a new folder. a. Add a folder named fluid-grid. Double-click the folder. Name the file layout.css. Click Save. 3. Save the web page in the same folder. a. Press Ctrl-S. Name the file index.html. Click Save. 4. Save related styles and scripts in the same folder. a. In the Copy Dependent Files dialog, select the fluid-grid folder and click Copy. b. In the Files tab, click the + button next to the fluid-grid folder. It should now contain index.html, layout.css, boilerplate.css and respond.min.js. 5. Click Code to view the source code. Try to understand what the meta, link, and script tags do. Adobe Dreamweaver CS6 Part 3 Page 4 of 11 © Copyright 2013 Computer Applications Training, Colorado State University 6. Remove the only layout div. a. Click div#LayoutDiv1 in the bar just below the document in Design view. b. Press the Delete key to remove this div. (Do not remove the gridContainer div!) 7. Insert a div tag named header. a. Click Insert > Layout Objects > Fluid Grid Layout Div Tag or use the button in the Layout bar. b. In the ID box, type header. Start new row should be checked. Click OK. 8. In the same way, add div tags named article, nav, sidebar and footer. 9. Click the three device buttons below the content (Mobile Size, Tablet Size, and Desktop Size). a. For Phone Size, the divs are already arranged into one column. 10. Arrange divs into two columns for tablets. The navigation float to the right of the content. a. Click the Tablet Size button. b. Click in the nav div. Click the black “Move up a row” arrow to the right of the div. c. Resize the nav div to be 3 columns wide by dragging the right edge toward the left. d. Resize the article div to be 5 columns wide. nav should move up and to the right of article. 11. Arrange divs into three columns for desktops. The sidebar should float right of the navigation. a. Click the Desktop Size button. b. Move the nav and sidebar divs up. Resize them to be 3 columns each. c. Resize the article div to be 6 columns. nav and sidebar divs should move to the right. 12. Click File, Save All. Use Multiscreen Preview or browsers to verify that the design is responsive. 13. Add some content to each of the sections. For example, a. Triple-click the header tag, press the Delete key, click Insert > Tag, click the h1 tag, click Insert, type Colorado State University in the Header box, click OK, and click Close. b. Click after the closing </h1> tag, and insert an h2 tag containing Libraries. Adobe Dreamweaver CS6 Part 3 Page 5 of 11 © Copyright 2013 Computer Applications Training, Colorado State University Attach a Sample Stylesheet 1. In the CSS Styles tab, click All. 2. Right-click anywhere in the area below the tab and click Attach Style Sheet… 3. Click the sample style sheets link. 4. Select a design (Basic, Text, Colors, or Full Design). 5. Click Browse, double-click the fluid-grid folder, and click Select. 6. Click OK. 7. Check that a new stylesheet (e.g. Level3_3.css) is now in the folder, and that the page has visibly changed in Design view. 8. Click the header div and select the the header class in the Properties window. 9. Repeat for the footer and nav divs. Adobe Dreamweaver CS6 Part 3 Page 6 of 11 © Copyright 2013 Computer Applications Training, Colorado State University Create a Spry Menu Bar Dreamweaver’s Spry objects use XML, CSS and JavaScript to add interactivity to pages with little coding. Controls include menu bars, tabbed and collapsible panels, data, and form field validation. 1. Create a new HTML5 blank page. a. Click File, New… Under Layout, click <none>. Select DocType: HTML 5. Click Create. b. Press Ctrl-S. Create a folder named spry and double-click it. c. Type index.html and click Save. 2. Add a Spry menu bar. a. Click Insert > Spry > Spry Menu Bar or click the Spry Menu Bar button in the Spry menu. b. Select Horizontal and click OK. Press Ctrl-S. css and js appear in a SpryAssets folder and tags. 3. In Design view, click the Spry Menu Bar: MenuBar 1. In the Properties section, the menus and their menu items are listed.
Recommended publications
  • ANNI BOND 3101 Cinnamon Circle | Raleigh, NC 27610 (919) 758-6935 | [email protected]
    ANNI BOND 3101 Cinnamon Circle | Raleigh, NC 27610 (919) 758-6935 | [email protected] OBJECTIVE To write/edit technical documentation in the technology or gaming fields. PROFESSIONAL Troppus Software Corporation Superior, CO EXPERIENCE SKMS KB/CM Engineer, Engineering 2011 – Present Developed content for the premium tech support application, Symbi. Managed Sling Media knowledge base initiative where new Sling Media articles and article updates were implemented in our knowledge base for a Sling Media-branded version of our client; Spearheaded the development of the first internal style guide. Edited articles written by other content engineers for spelling, grammar, correctness, consistency, and in-house style guide adherence; Tested features, bugs, and fixes in the development tools. Tested DISH Network ViP722k, Hopper with Sling Adapter, and Joey DVRs. University of North Carolina at Charlotte Charlotte, NC Intern, Information Technology Services 2011 Authored a 60+ page manual with another student for the System Administration Management (SAM) tool, used to plan budgets and expenses in UNC Charlotte colleges; Authored a 30+ page manual for the reports section; Authored a quick reference guide for SAM; Edited a reference guide of commonly used account codes for SAM. UNC Charlotte Student Media Publications Charlotte, NC Copy Editor, The University Times 2009 – 2011 Was promoted to Asstistant Copy Editor in January 2010 and again to Copy Editor in August 2010. Edited articles written by other students for grammar, spelling, and Associated Press errors and applied the edits to digital copies; Edited housing and welcome guides produced by the paper three times a year; Wrote stories about events or ideas that impacted Charlotte.
    [Show full text]
  • Fira Code: Monospaced Font with Programming Ligatures
    Personal Open source Business Explore Pricing Blog Support This repository Sign in Sign up tonsky / FiraCode Watch 282 Star 9,014 Fork 255 Code Issues 74 Pull requests 1 Projects 0 Wiki Pulse Graphs Monospaced font with programming ligatures 145 commits 1 branch 15 releases 32 contributors OFL-1.1 master New pull request Find file Clone or download lf- committed with tonsky Add mintty to the ligatures-unsupported list (#284) Latest commit d7dbc2d 16 days ago distr Version 1.203 (added `__`, closes #120) a month ago showcases Version 1.203 (added `__`, closes #120) a month ago .gitignore - Removed `!!!` `???` `;;;` `&&&` `|||` `=~` (closes #167) `~~~` `%%%` 3 months ago FiraCode.glyphs Version 1.203 (added `__`, closes #120) a month ago LICENSE version 0.6 a year ago README.md Add mintty to the ligatures-unsupported list (#284) 16 days ago gen_calt.clj Removed `/**` `**/` and disabled ligatures for `/*/` `*/*` sequences … 2 months ago release.sh removed Retina weight from webfonts 3 months ago README.md Fira Code: monospaced font with programming ligatures Problem Programmers use a lot of symbols, often encoded with several characters. For the human brain, sequences like -> , <= or := are single logical tokens, even if they take two or three characters on the screen. Your eye spends a non-zero amount of energy to scan, parse and join multiple characters into a single logical one. Ideally, all programming languages should be designed with full-fledged Unicode symbols for operators, but that’s not the case yet. Solution Download v1.203 · How to install · News & updates Fira Code is an extension of the Fira Mono font containing a set of ligatures for common programming multi-character combinations.
    [Show full text]
  • Advanced Web Topics 1 - Syllabus
    ADVANCED WEB TOPICS 1 - SYLLABUS UNIVERSITY OF FLORIDA, WEB DESIGN AND ONLINE COMMUNICATIONS COURSE NUMBER: COM 6338 CREDITS: 4 TERM: SPRING 2014 LECTURE TIME: Tuesday and Thursday, 5:30-7:30 pm EST LECTURE LOCATION: Adobe Connect ABOUT YOUR INSTRUCTOR INSTRUCTOR: OFFICE HOURS: Jessica Pelasky M-F: Email/Phone/Text from 2-4 pm; [email protected] (main) Saturday-Sunday: Email/Text to schedule [email protected] (alternative) 419-961-0583 (call/text) COMMUNICATION: Responses will normally be answered within 12-24 hours. If an emergency, please either call/text. Please send email to UF email address; do not use the mail function within Canvas. INSTRUCTOR TEACHING PHILOSOPHY: Instructor plans on teaching this class where she assumes that you are a beginner in the subject matter. She believes a proper web designer should be able to develop a website from the ground up; meaning coding HTML, CSS, and JavaScript from scratch before using pretty web design software. :) She feels people tend to skip over the basics and go right to the items they want to implement; however without a strong base, you cannot build anything without it collapsing. ABOUT THE COURSE PREREQUISITE KNOWLEDGE AND SKILLS: ● Prerequisite courses: MMC5277 Web Design Principles, VIC5325 Digital Imagery, and VIC5326 Digital Layout. ● Students should have a firm working knowledge of HTML and CSS coding as well as uploading websites via FTP. PURPOSE: This course will expand the basic coding of XHTML and CSS learned in MMC5277. The course will cover three main topics: HTML5 and CSS3, foundations of JavaScript. We will also cover advanced web design using Adobe Dreamweaver.
    [Show full text]
  • Gerry E. Mayer 604.314.7541 [email protected] PROFESSIONAL PROFILE
    gerry e. mayer 604.314.7541 [email protected] www.gemdigitalmedia.com PROFESSIONAL PROFILE Interactive and web design professional with more than 10 years practical experience and 6 as a post secondary instructor, in web design, web development, digital imaging, Flash development, video and motion graphics, and animation. Experience also includes managing, the development, preparation and facilitation of courses in Professional Development, and Basic English Essay Writing. Strong focus on maintaining creative excellence and creating positive relationships for both internal and external clients from within the public, private and educational sectors. PROFESSIONAL EXPERIENCE 2011-current Surrey Connect – Surrey School District – Surrey, BC Web Communication Specialist ▪ Support and train teachers in the use of Blackboard Learn 9.1 LMS ▪ Assist in administering Blackboard Learn 9.1 ▪ Maintain and support Blackboard LMS course shells ▪ Develop web solutions for Surrey Connect ▪ Create and deliver Blackboard training workshops ▪ Support and development of Social Media solutions - surreyconnectnews.com ▪ Support for digital media solutions ▪ Create and maintain Google analytics, AdWords and Facebook advertising ▪ Administer and support Lynda.com ▪ Support Tell me more - language LMS 2008-2011 Douglas College – New Westminster, BC Web Designer § Responsible for development and maintenance of corporate website using CMS – Active 9.0 (formerly Ironpoint) § Developed and implemented new site Design including Information architecture, prototyping,
    [Show full text]
  • Adobe Dreamweaver CS4: Learning the Tools
    Adobe Dreamweaver CS4: Learning the Tools Dreamweaver is an HTML (Hypertext Markup Language) editor, authoring tool, and Web site management tool. Dreamweaver is a WYSIWYG (what you see is what you get) web page editor that is very powerful and easy to use. Dreamweaver CS4 uses XHTML XHTML is the next generation of HTML, and is a hybrid between HTML and XML. XML was designed to describe data. HTML was designed to display data. Not all browsers support XML, so XHTML provides an intermediary solution and can be interpreted by XML and HTML browsers. Note: In most cases, you may not notice the difference between HTML and XHTML. XHTML has a stricter syntax than HTML, but Dreamweaver writes the new code just as easily. Dreamweaver even has an option for converting HTML pages to XHTML: File > Convert > XHTML. You will see a new DOCTYPE declaration at the top of the text in Code View, and the tags and properties will be converted to the correct syntax for XHTML. XHTML settings are located in the Edit > Preferences menu The Work Area When you launch Dreamweaver you will have the option as to how the panels display with the work area. Change the view of the Panels and Panel Groups accordingly to reflect what you are creating or editing. The Dreamweaver 8/CS3/CS4 look is streamlined and saves screen space making the interface a lot easier to learn. The Document Window displays your web page approximately as it will appear in a web browser. Insert Bar The Insert Bar contains buttons for inserting common web page elements such as images, tables, layers, hyperlinks, and rollover images.
    [Show full text]
  • Download PDF / the Essential Guide to Open Source Flash Development
    TWKGQDXTBXUG // Kindle < The Essential Guide to Open Source Flash Development Th e Essential Guide to Open Source Flash Development Filesize: 3.43 MB Reviews Simply no terms to explain. I am quite late in start reading this one, but better then never. Its been written in an remarkably easy way and is particularly merely soon after i finished reading this book where basically changed me, affect the way i really believe. (Prof. Jedediah Kuhic DVM) DISCLAIMER | DMCA ZNTEMYJPP2NE PDF // The Essential Guide to Open Source Flash Development THE ESSENTIAL GUIDE TO OPEN SOURCE FLASH DEVELOPMENT To get The Essential Guide to Open Source Flash Development PDF, please follow the hyperlink under and download the document or have access to other information that are related to THE ESSENTIAL GUIDE TO OPEN SOURCE FLASH DEVELOPMENT book. friendsofED. Paperback. Book Condition: New. Paperback. 350 pages. Dimensions: 8.9in. x 7.5in. x 1.0in.Explore the world of open source Flash and discover which tools are available. Learn how to identify which tool you need and how to best fit it into your workflow. Step-by-step walk-throughs guide you through development with the most popular open source Flash tools. Written by the project leads and open source Flash aficionados. The Essential Guide to Open Source Flash Development is a practical development guide to creating Flash applications with open source Flash tools and workflows. You will walk away with an understanding of what tools will best suit your current situation, making your development easier and more productive, and with the knowledge of how to install and set up some of the best tools available, including the following: Papervision3D: to create 3D in Flash Red5: to stream video over the internet SWX: to build data-driven mashups and mobile apps Fuse: to make ActionScript animation a cinch Go: to build your own animation tools in ActionScript 3.
    [Show full text]
  • Year 2 Volume 3/ 2015
    Cultural Intertexts Year 2 Volume 3/ 2015 Cultural Intertexts Journal of Literature, Cultural Studies and Linguistics published under the aegis of: Faculty of Letters – Department of English Research Centre Interface Research of the Original and Translated Text. Cognitive and Communicative Dimensions of the Message Doctoral School of Socio-Humanities Editing Team Editor-in-Chief: Michaela PRAISLER ([email protected]) Editorial Board Oana-Celia GHEORGHIU ([email protected] ) Alexandru PRAISLER ([email protected]) Andreea IONESCU ([email protected]) Irina RAȚĂ ([email protected]) Editorial Secretary Mihaela IFRIM ([email protected]) ISSN-L 2393-0624 ISSN 2393-0624 E-ISSN 2393-1078 Full content available at cultural-intertexts.webnode.com/ © 2015 Casa Cărții de Știință Cluj- Napoca, B-dul Eroilor 6-8 www.casacartii.ro [email protected] SCIENTIFIC COMMITTEE Professor Ioana MOHOR-IVAN, “Dunărea de Jos” University of Galaţi Professor Vladislava GORDIC PETKOVIC, University of Novi Sad, Serbia Professor Anca DOBRINESCU, ”Petrol și Gaze” University of Ploiești Associate Professor Ruxanda BONTILĂ, “Dunărea de Jos” University of Galaţi Associate Professor Steluţa STAN, “Dunărea de Jos” University of Galaţi Associate Professor Gabriela COLIPCĂ-CIOBANU, “Dunărea de Jos” University of Galaţi Senior Lecturer Cătălina NECULAI, Coventry University, UK Senior Lecturer Nicoleta CINPOEȘ, University of Worcester, UK Senior Lecturer Isabela MERILĂ, “Dunărea de Jos” University of Galaţi * The contributors are solely responsible for the scientific accuracy of their articles. TABLE OF CONTENTS EDITOR’S NOTE 5 LITERATURE AS WORLD INTERTEXT(S) Gabriela-Iuliana COLIPCĂ-CIOBANU 6 Shakespeare, the Musical and Political Humour in Kiss Me Kate Revived Daniela-Irina DARIE 32 The Tragedies of Yorùbá’s Spiritual Space Oana-Celia GHEORGHIU, Michaela PRAISLER 42 Western Political Philosophy in J.
    [Show full text]
  • ADOBE® CREATIVE SUITE® 3 WEB STANDARD Streamline Web Design, Development, and Maintenance
    Datasheet ADOBE® CREATIVE SUITE® 3 WEB STANDARD StreaMLine web design, deveLOPMent, and Maintenance Adobe Creative Suite 3 Web Standard software is the basic toolkit for web designers and developers. It offers all-new versions of fundamental tools for creating and maintaining interactive websites, applications, and mobile device content. Prototype your projects, design assets, and build and maintain professional web experiences. Get the fundamental tools Enjoy the latest workflows Move from concept to completion with Use the integrated tools in Creative Suite 3 Adobe Creative Suite 3 Web Standard software. Web Standard to refine your current skillset Adobe Creative Suite 3 Web Standard combines Adobe Bridge Design assets and build your prototype with while expanding into exciting new techniques CS3, Adobe Version Cue® CS3, Adobe Fireworks® CS3 software. Bring your and technologies. Catch the wave of online Adobe Device Central CS3, Adobe project to life with Adobe Dreamweaver® CS3 video with sophisticated web video tools, or Stock Photos, and Adobe Acrobat® and Adobe Flash® CS3 Professional, the preferred explore new opportunities in mobile content Connect™ with: web design and development tools. Easily design. Reach into development with the Spry • Adobe Dreamweaver CS3 maintain the final project and integrate user- framework for Ajax and new ActionScript™ 3.0 • Adobe Flash CS3 Professional generated content with Adobe Contribute® language for Flash. With Creative Suite 3 Web • Adobe Fireworks CS3 • Adobe Contribute CS3 CS3. Creative Suite 3 Web Standard combines Standard, the future is yours. the fundamental web tools, all in one place. Consider Adobe Creative Suite 3 Discover intelligent integration Web Premium Take advantage of tight integration between Adobe Creative Suite 3 Web your core tools, so you can forget the software Premium software is a complete and focus on the project.
    [Show full text]
  • ADOBE® CREATIVE SUITE® 3 WEB PREMIUM Redefine the Extraordinary in Web Design and Development
    Datasheet ADOBE® CREATIVE SUITE® 3 WEB PREMIUM RedeFINE THE EXtraordiNarY IN web desigN AND deveLopmeNT Adobe Creative Suite 3 Web Premium software is a complete solution for creating interactive websites, applications, user interfaces, presentations, mobile device content, and other digital experiences. Get everything you need to prototype your project, design assets, build web experiences, and efficiently maintain and update content. Get the essential tools compatibility between Dreamweaver and Finally, all your favorite tools are in one Contribute. Organize your assets with Adobe Adobe Creative Suite 3 Web solution. Design core assets and build your Bridge CS3, and coordinate your team with Premium combines Adobe Bridge prototype with Adobe Photoshop® CS3 Adobe Version Cue CS3. CS3, Adobe Version Cue® CS3, Extended, Adobe Illustrator® CS3, and Adobe Enjoy the latest workflows Adobe Device Central CS3, Adobe Fireworks® CS3 software. Then bring your Never before have there been so many Stock Photos, and Adobe Acrobat® project to life with Adobe Dreamweaver® CS3 opportunities for designers and developers to Connect™ with: and Adobe Flash® CS3 Professional, the • Adobe Dreamweaver CS3 refine their current skillset while expanding industry-leading web design and development • Adobe Flash CS3 Professional into exciting new techniques and technologies. • Adobe Photoshop CS3 Extended tools. Use Adobe Acrobat® 8 Professional Immerse yourself in online video creation • Adobe Illustrator CS3 software to quickly share design ideas and with sophisticated web video tools. • Adobe Fireworks CS3 collect feedback from colleagues and clients, • Adobe Acrobat 8 Professional Follow best practices with new CSS tools. and easily maintain the final project with • Adobe Contribute CS3 Explore the possibilities in mobile content Adobe Contribute® CS3.
    [Show full text]
  • Requirements for Web Developers and Web Commissioners in Ubiquitous
    Requirements for web developers and web commissioners in ubiquitous Web 2.0 design and development Deliverable 3.2 :: Public Keywords: web design and development, Web 2.0, accessibility, disabled web users, older web users Inclusive Future Internet Web Services Requirements for web developers and web commissioners in ubiquitous Web 2.0 design and development I2Web project (Grant no.: 257623) Table of Contents Glossary of abbreviations ........................................................................................................... 6 Executive Summary .................................................................................................................... 7 1 Introduction ...................................................................................................................... 12 1.1 Terminology ............................................................................................................. 13 2 Requirements for Web commissioners ............................................................................ 15 2.1 Introduction .............................................................................................................. 15 2.2 Previous work ........................................................................................................... 15 2.3 Method ..................................................................................................................... 17 2.3.1 Participants ..........................................................................................................
    [Show full text]
  • 7-Year European Language Label — Innovative Projects in the Lifelong Learning Programme
    7-year European Language Label — Innovative Projects in the Lifelong Learning Programme Languages Europe Direct is a service to help you find answers to your questions about the European Union. Freephone number (*): 00 800 6 7 8 9 10 11 (*) The information given is free, as are most calls (though some operators, phone boxes or hotels may charge you). More information on the European Union is available on the Internet (http://europa.eu). Luxembourg: Publications Office of the European Union, 2014 ISBN 978-92-79-37860-7 doi:10.2766/65538 European Union, 2014 Reproduction is authorised provided the source is acknowledged. The information contained in the project records is provided courtesy of the relevant parties, who are solely responsible for the contents. © Cover image: © skynesher — iStockphotos.com Printed in Belgium Printed on elemental chlorine-free bleached paper (ECF) 7-year European Language Label de pl fr hu lv es nl sk it da bg is fi lu tr el lt Innovative Projects sl pt en in the Lifelong ro mt Learning Programme ga cs et no All projects are available in the European Language Label Database http://ec.europa.eu/education/language/label/index.cfm CONTENTS Introduction 8 The European Language Label initiative — a success story Initial and in-service language IRELAND ÉIRE/IRELAND 38 teacher training Bilingual Forum Ireland FÓRAM DÁTHEANGACH NA hÉIREANN AUSTRIA ÖSTERREICH 12 Dual Language Programme (DLP) POLAND POLSKA 40 I Love Guatemala Culture and Education FRANCE FRANCE 14 Project Emilangues PROJEKT KULTUROZNAWCZO‑EDUKACYJNY
    [Show full text]
  • On Detecting Web-Tracking
    INSTITUT FUR¨ INFORMATIK DER LUDWIG–MAXIMILIANS–UNIVERSITAT¨ MUNCHEN¨ Masterthesis On detecting Web-Tracking Thomas Muller¨ INSTITUT FUR¨ INFORMATIK DER LUDWIG–MAXIMILIANS–UNIVERSITAT¨ MUNCHEN¨ Masterthesis On detecting Web-Tracking Thomas Muller¨ Supervising professor: Prof. Dr. Dieter Kranzlmuller¨ Supervisors: Dr. Michael Schiffers Dr. Nils gentschen Felde Date of Submission: 13. July 2015 I assure the single handed composition of this master’s thesis only supported by declared resources. Hiermit versichere ich, dass ich die vorliegende Masterarbeit selbstandig¨ verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel verwendet habe. Munich, 13. July 2015 ............................................. (Signature of the Thesis Candidate) Web-Tracking is an incredible big business focusing on the collection of as many user data as possible and use it - among other scenarios - for hand-crafted advertising. Trackers are constantly seeking to improve their tracking mechanisms in order to be able to gather more user-based data. The most recent developments of this research are fingerprinting techniques: Browser- and Canvas-Fingerprinting. Fingerprinting techniques differ to the de facto standard for implementing Web-Tracking - Cookies - in several aspects. Firstly, it is very hard to notice that a web site is fingerprinting the user. Secondly, even if the user knows that he is being fingerprinted, it is very hard to effectively block it. Lastly, fingerprinting techniques enable the trackers to recognize users, which consequently leads to even more user-based data, because this enables them to track users among different web sites. Using the collected user data facilitates the trackers to create detailed user profiles, which clearly threatens the privacy of users. In order to increase privacy being endangered by Web- Tracking, the first step required is to be able to detect the use of fingerprinting techniques.
    [Show full text]