WDV 331 Dreamweaver Applications Find and Replace Dreamweaver CS6 Chapter 20.

Slides:



Advertisements
Similar presentations
Chapter 1: Introduction. Contents Whats New in Dreamweaver CS4? The Dreamweaver CS4 Interface Setting Up a Site Creating a Web Page Adding Text to Your.
Advertisements

Getting Started with your Course Staff Guide. Turn Editing On Click either the link or the button as below:
Chapter 3 – Web Design Tables & Page Layout
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you to get and stay organized?
Chapter 3 Creating a Business Letter with a Letterhead and Table
WDV 331 Dreamweaver Applications Site Assets Dreamweaver CS6 Chapter 15.
Ch. 5 Web Page Design – Templates and Style Sheets Mr. Ursone.
© 2010 Delmar, Cengage Learning Chapter 12 Working with Library Items and Snippets.
About Links in Dreamweaver. Creating Links A link has 2 parts: –The URL (Uniform Resource Locator)= the name and path of the file you want to link –The.
Microsoft Word 2003 Tutorial 2 – Editing and Formatting a Document.
Microsoft Expression Web-Illustrated Unit L: Using Code Tools.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Chapter 3 Tables and Page Layout
Introducing Cascading Style Sheets  Cascading Style Sheet Basics  Creating Styles  Using Styles  Manipulating Styles  Text Formatting with CSS.
Chapter 7 Using Advanced Cascading Style Sheets HTML5 & CSS 7 th Edition.
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
Using Dreamweaver getting started 1)Start in your “My Documents” folder 2)Create a new folder called “website” 3)Create a sub folder called “images” 4)Start.
WDV 331 Dreamweaver Applications Templates Dreamweaver CS6 Chapter 19.
XP Tutorial 6New Perspectives on HTML and XHTML, Comprehensive 1 Creating Web Page Forms Designing a Product Registration Form Tutorial 6.
Chapter 3 Working with Text and Cascading Style Sheets.
Macromedia Dreamweaver CS4 Tutorial. Example of the website1 folder & images folder inside Create a folder on your computer called website1 to hold all.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
© Commonwealth of Australia 2009 Using OneNote in the Classroom.
Creating A Site Using A Template In Dreamweaver CS6 Cakes R Us!
WDV 331 Dreamweaver Applications Snippets and Libraries Items Dreamweaver CS6 Chapter 18.
Getting Started with Application Software
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
1. Chapter 18 Managing Lists 3 Working with Lists and Symbols Set off important information by formatting it as a bulleted or numbered list. Customize.
Bare bones notes. Suggested organization for main folder. REQUIRED organization for the 115 folder.
Website Development with Dreamweaver
CHAPTER 4 LINKS Creating links between pages Linking to other sites links.
The format is text files, with.htm or.html extension. Hard returns, tabs, and extra spaces are ignored. DO NOT use spaces in file names. File names ARE.
Formatting TEXT AND Using CSS. Adobe Dreamweaver CS3 - Illustrated.
Word Lesson 2 Basic Editing
XP 1 Microsoft Word 2002 Tutorial 1 – Creating a Document.
Microsoft Access 2000 Presentation 2 Creating Databases Part I (Creating Tables)
Bare bones slide show. The format is text files, with.htm or.html extension. Hard returns, tabs, and extra spaces are ignored. DO NOT use spaces in file.
Dreamweaver CS4 Concepts and Techniques Chapter 2 Adding Web Pages, Links, and Images.
Adobe Flash CS3 Revealed Chapter 3 - WORKING WITH SYMBOLS AND INTERACTIVITY.
Chapter 1 Creating a Dreamweaver Web Page and Local Site
Sports Website Creation. In this project you will design and produce your own website.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
Introducing Cascading Style Sheets. Cascading Style Sheet Basics  Cascading Style Sheet Basics  Creating Styles  Using Styles  Manipulating Styles.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
1 Insert Tab. 2 Then choose a cover page you want and you can easily edit it.
HTML, Third Edition--Illustrated Brief 1 HTML, Third Edition Illustrated Brief Unit C Formatting Page Elements with HTML.
Microsoft Expression Web 3 – Illustrated Unit D: Structuring and Styling Text.
Introducing Dreamweaver. Dreamweaver The web development application used to create web pages Part of the Adobe creative suite.
Building a Website: Layout Fall Overall Structure: Home Page Title Section Title Frame Picture UNCP Math Menu Content Footer Contact Information.
Practice for Chapter 3: Assume that you are a freelance web designer and need to create a website to promote your freelance company.
Find text. 1 Find and replace text. 2 Find and replace special characters. 3 Find and replace formatting. 4 2.
01 – HTML (1) Informatics Department Parahyangan Catholic University.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
1 Word Lesson 2 Basic Editing Microsoft Office 2010 Introductory Pasewark & Pasewark.
HTML Links CS 1150 Spring 2017.
Intro to HTML CS 1150 Spring 2017.
Intro to HTML CS 1150 Fall 2016.
Dreamweaver MX Lesson 14: Using Find and Replace.
Bare boned notes.
Tutorial 1 – Creating a Document
Getting Started with Dreamweaver
Unit I: Collecting Data with Forms
Benchmark Series Microsoft Word 2016 Level 2
HTML Links.
Lesson 3: Find and Replace Tools
Using Templates and Library Items
Exercise 9 Skills You create and use styles to create formatting rules that can easily by applied to other pages in the Web site. You can create internal.
HTML Links CS 1150 Fall 2016.
Presentation transcript:

WDV 331 Dreamweaver Applications Find and Replace Dreamweaver CS6 Chapter 20

Find and Replace Basics 1 To search, press Ctrl + F ( ⌘ -F), or choose Edit → Find and Replace.

Find and Replace Basics 2 The procedure for using the Find and Replace feature is: Phase 1: Determine the Scope of Your Search – Where to search (within highlighted text on a page, in a file, a folder, or on your entire website). Phase 2: Specify What to Search For – Next, tell it what to search for (text, HTML, or a particular tag with a specific attribute). Phase 3: Provide the Replacement Text Phase 4: Choose the Search Settings Phase 5: Take Action Finally, you dictate what the replacement item is. – optional; you can use the Find and Replace window as a way to locate an item on a page or on your site, without changing it to anything.

Advanced Text Searches Limiting the Search by Tag Limiting a Search by Attribute

Regular Expression To find three numbers in a row, you could search for \d\ d\ d, which would find 555, 747, 007, and so on. There’s even shorthand for this: \d{ 3}. Here are some of the other symbols you’ll encounter when using regular expressions: –. (period) stands for any character, letter, number, space, and so on. – \w stands for any letter or number (but not spaces, tabs,, or line breaks). – * (asterisk) represents the preceding character, zero or more times (and is always used after another character). – This is best explained with an example: The regular expression colou* r, for instance, matches both “colour” and “color” — the * following the u indicates that the u is optional (it can appear zero times). This would also match “colouuuuur”

Adding Alt Text Fast Figure book page 909 kindle The numbers shown correspond to the steps in this example, in which you want to add an tag to every occurrence of the banner logo Class exercise complete the add alt text fast – Uses regular expression – icles/regular_expressions_pt1.html icles/regular_expressions_pt1.html

Adding Alt Text Fast Figure The numbers shown here correspond to the steps in this example, in which you want to add an tag to every occurrence of the banner

Stored Query to Remove CSS Comments ts.php ts.php Uses regular expression