STRUCTURE AND HTML TAGS. MyGraphicsLab: Adobe Dreamweaver CS6 ACA Certification Preparation for Web Communication

Similar documents
Introduction to Web Development

Using Adobe Dreamweaver CS4 (10.0)

Dreamweaver. Introduction to Editing Web Pages

Getting Started with KompoZer

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

IAS Web Development using Dreamweaver CS4

Contents. Downloading the Data Files Centering Page Elements... 6

Site Maintenance. Table of Contents

Basic tutorial for Dreamweaver CS5

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

Creating Web Pages With Dreamweaver MX 2004

ebooks: Exporting EPUB files from Adobe InDesign

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

Microsoft Word 2013 Tutorial

Umbraco v4 Editors Manual

Dreamweaver CS5. Module 1: Website Development

Responsive Web Design for Teachers. Exercise: Building a Responsive Page with the Fluid Grid Layout Feature

How to Edit Your Website

Web Authoring CSS. Module Descriptor

Microsoft Word 2010 Tutorial

Web Authoring. Module Descriptor

Adobe Dreamweaver CC 14 Tutorial

Dreamweaver CS6 Basics

Creating Web Pages with HTML Simplified. 3rd Edition

Dreamweaver CS3 THE MISSING MANUAL. David Sawyer McFarland. POGUE PRESS" O'REILLY 8 Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo

BLACKBOARD 9.1: Text Editor

Web Ambassador Training on the CMS

Web Development I & II*

WYSIWYG Editor in Detail

Fast track to HTML & CSS 101 (Web Design)

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Adobe Dreamweaver Exam Objectives

LaGuardia Community College Thomson Ave, Long Island City, New York Created by ISMD s Dept. Training Team. Overview

Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions)

KOMPOZER Web Design Software

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Quick Guide to the Cascade Server Content Management System (CMS)

Content Management System

MS Word 2007 practical notes

Dreamweaver Domain 2: Planning Site Design and Page Layout

BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D

Creating Web Pages with Dreamweaver CS 6 and CSS

ADOBE DREAMWEAVER CS3 TUTORIAL

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer)

SAULT COLLEGE OF APPLIED ARTS AND TECHNOLOGY SAULT STE. MARIE, ONTARIO COURSE OUTLINE

USER GUIDE. Unit 4: Schoolwires Editor. Chapter 1: Editor

Create a Web Page with Dreamweaver

Help on Icons and Drop-down Options in Document Editor

-SoftChalk LessonBuilder-

COURSE OUTLINE FACULTY OF INFORMATION AND COMMUNICATION TECHNOLOGY UNIVERSITI TEKNIKAL MALAYSIA MELAKA

HTML Fundamentals IN THIS APPENDIX

Web Page Design (Master)

IE Class Web Design Curriculum

Microsoft Publisher 2010 What s New!

Creating Electronic Portfolios using Microsoft Word and Excel

CLASSROOM WEB DESIGNING COURSE

Dreamweaver CS5. Module 2: Website Modification

Mastering the JangoMail EditLive HTML Editor

WORDPRESS MANUAL WEBSITEDESIGN.CO.ZA

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

HTML CSS Basic Structure. HTML Structure [Source Code] CSS Structure [Cascading Styles] DIV or ID Tags and Classes. The BOX MODEL

Word Processing programs and their uses

HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout

Course Duration: One hour Theory and 3 hours practical per week for 15weeks. As taught in 2010/2011 Session

CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5

Microsoft Frontpage 2003 Keyboard Shortcuts

Cascade Server. End User Training Guide. OIT Training and Documentation Services OIT TRAINING AND DOCUMENTATION.

How To Create A Web Page On A Windows (For Free) With A Notepad) On A Macintosh (For A Freebie) Or Macintosh Web Browser (For Cheap) On Your Computer Or Macbook (

Google Docs Basics Website:

Using an external style sheet with Dreamweaver (CS6)

RADFORD UNIVERSITY. Radford.edu. Content Administrator s Guide

Macromedia Dreamweaver 8 Developer Certification Examination Specification

ANDROID TRAINING COURSE MODULES. Module-I: Introduction to Android. Introducing Android. Installing Development Tools. Using the Emulator.

Quick Guide for Accessible PDF July 2013 Training:

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running

Creating Personal Web Sites Using SharePoint Designer 2007

Web Design Specialist

Dreamweaver. Links and Tables

Adobe Acrobat 9 Pro Accessibility Guide: Creating Accessible PDF from Microsoft Word

WEB DESIGN COURSE CONTENT

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Web Developer Jr - Newbie Course

Website Builder Documentation

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

Application Note. Building a Website Using Dreamweaver without Programming. Nan Xia. MSU ECE 480 Team 5

CREATING WEB PAGES USING HTML INTRODUCTION

Advanced Presentation Features and Animation

Adobe Conversion Settings in Word. Section 508: Why comply?

WordPerfect for Windows shortcut keys for the Windows and DOS keyboards

San Joaquin County Office of Education Career & Technical Education Web Design ~ Course Outline CBEDS#: 4601

MICROSOFT WORD TUTORIAL

HTML and CSS 2 Class Meetings Instructor Contact Office Hours: Tuesdays 5:30-7:30 PM Online Class Message List Opt Out of Class

Jadu Content Management Systems Web Publishing Guide. Table of Contents (click on chapter titles to navigate to a specific chapter)

darlingharbour.com Content Management System Tenant User Guide

Transcription:

STRUCTURE AND HTML TAGS MyGraphicsLab: Adobe Dreamweaver CS6 ACA Certification Preparation for Web Communication

OBJECTIVES This presentation covers the following ACA Exam objectives: 4.1 Demonstrate knowledge of Hypertext Markup Language. 4.11 Import tabular data to a web page. 5.3 Modify text and text properties. 5.6 Use basic HTML tags to set up an HTML document, format text, add links, create tables, and build ordered and unordered lists. 5.7 Add head content to make a web page visible to search engines.

STRUCTURE AND HTML TAGS TOPICS Learn how to separate structure from presentation Learn how to apply HTML structure Learn how to apply HTML in Code view Learn how to apply HTML in Design view Learn how to apply HTML table structure Learn how to apply HTML page layout structure

HTML STRUCTURE HTML tags give the content meaning (semantics). HTML has tags for: Formatting text Page structure Enabling interactivity HTML is used for document structure, not for presentation Properly structured HTML markup consists of an opening tag and a closing tag In XHTML, tags with no closing element are self closing (example: <br />) Page information generally appears within the <head> element. Example: Page title, Meta Tags Page content appears within the <body> element. See Adobe Dreamweaver CS6 Classroom in a Book, page 21.

COMMON HTML4 (XHTML1.0) TAGS (1 OF 2) HTML text formatting <h1></h1> <h6></h6> headings 1 thru 6 <p></p> (paragraph) <ul></ul>, <ol></ol> unordered and ordered lists <li></li> list items <blockquote></blockquote> - quotation (creates a standalone indented paragraph) Tabular data <table></table> creates table <tr></tr> creates table row <th></th> creates table header <td></td> creates table cell Layout <div></div> creates a division (used to divide page content into discernible grouping. Used extensively to create multicolumn layouts)

COMMON HTML4 (XHTML1.0) TAGS (2 OF 2) Interactive <a></a> anchor (creates a hyperlink) Other tags <! comment --> HTML comments (used to add notes with the HTML that are not displayed in the browser window) <img /> places an image <strong></strong> adds semantic emphasis (displays as bold by default) <em></em> adds semantic emphasis (displays as italic by default) <script></script> contains a script or links to an external script <meta /> add metadata in the head section of the document

COMMON HTML5 TAGS (1 OF 2) HTML5 includes HTML4 and XHTML 1.0 tags. HTML5 is backward compatible. HTML5 tags in Dreamweaver CS6 can only be added in Code view. <header></header> designates the introduction of a document or section <nav></nav> designates a section of navigation <section></section> designates a section in a document Example: a chapter or group of related content <article></article> designates independent, self-contained content which can be syndicated independently from the rest of the site <canvas></canvas> designates graphic content created using a script See Adobe Dreamweaver CS6 Classroom in a Book, pages 30 34.

COMMON HTML5 TAGS (2 OF 2) <aside></aside> designates sidebar content that is related to the surrounding content <footer></footer> designates a footer for a document or section <figure></figure> designates a section of standalone content containing an image or video <figcaption></figcaption> designates a caption for a <figure> element <audio></audio> designates multimedia content, sounds, music, or other audio streams <video></video> designates video content <source></source> designates media resources for audio or video

HTML IN CODE VIEW You can enter HTML tags in Dreamweaver code view. HTML tags are color-coded for quick visual identification. You can change coloring in the Preferences > Code Coloring area. The Property inspector and tag selector reflect the HTML format. You may need to click Refresh in the Property inspector after code is altered. See Adobe Dreamweaver CS6 Classroom in a Book, pages 26 29.

APPLY SOURCE FORMATTING Dreamweaver-generated code can be organized and colored in Code view by choosing Commands > Apply Source Formatting. The formatting is based on set preferences. HTML version can be converted by choosing File > Convert.

HTML CODE HINTING Code hinting is menu listing available for HTML tags and attributes (including HTML5). Code hinting is invoked when you type the beginning of a tag: Type a right angle bracket (<). To insert an attribute, place the insertion point immediately after a tag name, and press the spacebar. Code hinting is activated by default. You can change code hinting under Preferences > Code Hints. Code hinting automatically closes tags. You can force code hints to appear. Press Ctrl+spacebar (Windows and Mac).

HTML STRUCTURE SHORTCUTS You can apply formatting using the Format menu or via keyboard shortcuts. Shortcuts can be used in Code or Design view. Headings <h1> <h6> Press Ctrl+1 Ctrl+6 (Windows) Press Cmd+1 Cmd+6 (Mac) Paragraph <p> Press Ctrl+Shift+P (Windows) Press Cmd+Shift+P (Mac) Remove formatting Press Ctrl+0 (Windows) Press Cmd+0 (Mac)

DREAMWEAVER QUICK TAG EDITOR The Quick Tag Editor provides easy and convenient access to HTML tags. Select content in the page, and click the Quick Tag Editor to wrap content within a tag. Or place your cursor in the page and click to insert tag. Or choose Modify > Quick Tag Editor. Or click Quick Tag Editor in the Property inspector. Or press Ctrl+T (Windows) or Cmd+T (Mac). See Adobe Dreamweaver Classroom in a Book, page 90.

HTML FORMAT IN DESIGN MODE Apply HTML format using the Property inspector: headings 1-6 paragraph none preformatted (html <pre> tag) Headings <h1> <h6> Ctrl+1 Ctrl+6 (Windows) Cmd+1 Cmd+6 (Mac) Paragraph <p> Press Ctrl+Shift+P (Windows) Press Ctrl+Shift+P (Mac) Remove formatting Press Ctrl+0 (Windows) Press Cmd+0 (Mac)

HTML UNORDERED LISTS Select multiple paragraphs in the Design view, and click Unordered List in the Property inspector to make a bulleted list. You can also use Format > List > Unordered List. This generates <ul> and <li> tags. Unordered lists are used extensively for structuring navigation bars and menus. See Adobe Dreamweaver Classroom in a Book, pages 175 178.

HTML ORDERED LISTS Select multiple paragraphs in the Design view, and click Ordered List in the Property inspector to make a numbered list. You can also use Format > List > Ordered List. This generates <ol> and <li> tags.

HTML STRONG/EMPHASIS SEMANTICS Strong (B) Press B in the Property inspector Format > Style > Bold Ctrl+B (Windows) / Cmd+B (Mac) Sets the <strong> HTML tag Strong (I) Press I in the Property inspector Format > Style > Italic Ctrl+I (Windows) / Cmd+I (Mac) Sets the <em> HTML tag See Adobe Dreamweaver Classroom in a Book, page 24.

HTML BLOCKQUOTE The HTML blockquote creates a standalone indented paragraph. Click the blockquote (indent) symbol in the Property inspector. Or press Ctrl+Alt+] (Windows) or Cmd+Option+] (Mac). Or choose Format > Indent. This generates the <blockquote> and </blockquote> tags. See Adobe Dreamweaver Classroom in a Book, pages 178 181.

HTML TABLES Insert tables in your layout: Click Table in the Common or Layout category in the Insert panel. Or choose Insert > Table. Or press Ctrl+Alt+T (Windows) or Cmd+Option+T (Mac). The Table dialog box lets you set the following items: Number of rows and columns Table widths (% or pixels) Border thickness Cell padding and spacing (2 pixels by default) Header row or column designation Summary (used for assistive technology) See Adobe Dreamweaver Classroom in a Book, pages 182 195.

HTML TABLE PROPERTIES Table properties appear when a table is selected in the page. Good practice to use the tag selector for selecting a table Avoid using HTML formatting in the Property inspector, such as: Width Cell padding and spacing Border Alignment Table styling should be accomplished using Cascading Style Sheets (CSS).

ADDING TABLE ROWS AND COLUMNS To add rows, click in a row, and then do one of the following: Click Insert Row Above or Insert Row Below in the Layout category in the Insert panel. Choose Insert > Table Objects. To add columns, click in a column, and do one of the following: Click Insert Column To The Left or Insert Column To The Right in the Layout category in the Insert panel. Choose Insert > Table Objects. For an overview, watch the video Inserting a Table.

HTML LAYOUT <DIV> TAGS <DIV> tags are used for structuring page layout. They divide page content into discernible grouping areas. Insert <DIV> tags via the Layout category in the Insert panel or by choosing Insert > Layout Objects > Div Tag. <DIV> tag insertion options: At insertion (cursor) point Wrap around selection (if selection is made) After start of tag (embeds within) Before end of tag (embeds within) IDs are commonly added to <DIV> tags. HTML5 <ARTICLE>, <SECTION>, <HEADER>, <ASIDE>, and <FOOTER> tags can be used as alternates to <DIV>. For an overview, watch the video Inserting Div Tags and IDs. Copyright.2013 MyGraphicsLab/Pearson Education