Introduction to Adobe Dreamweaver CC



Similar documents
Full report on all 24 clients

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

Web Authoring CSS. Module Descriptor

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

What is CSS? Official W3C standard for controlling presentation Style sheets rely on underlying markup structure

Creating Web Pages with Dreamweaver CS 6 and CSS

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

Using Adobe Dreamweaver CS4 (10.0)

Using Style Sheets for Consistency

JJY s Joomla 1.5 Template Design Tutorial:

{color:blue; font-size: 12px;}

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

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

Web Design with CSS and CSS3. Dr. Jan Stelovsky

CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5

Outline of CSS: Cascading Style Sheets

ITNP43: HTML Lecture 4

Basic tutorial for Dreamweaver CS5

Using an external style sheet with Dreamweaver (CS6)

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

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

CSS. CSS - cascading style sheets CSS - permite separar num documento HTML o conteúdo do estilo. ADI css 1/28

Adobe Illustrator CS6. Illustrating Innovative Web Design

Create a Web Page with Dreamweaver

Adobe Dreamweaver CC 14 Tutorial

Simply download Beepip from and run the file when it arrives at your computer.

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

Creating a Resume Webpage with

ITP 101 Project 3 - Dreamweaver

Web Design I. Spring 2009 Kevin Cole Gallaudet University

Advanced Editor User s Guide

Further web design: Cascading Style Sheets Practical workbook

How to create pop-up menus

Web layout guidelines for daughter sites of Scotland s Environment

ADOBE DREAMWEAVER CS3 TUTORIAL

Responsive Web Design: Media Types/Media Queries/Fluid Images

MCH Strategic Data Best Practices Review

File types There are certain image file types that can be used in a web page. They are:

In this chapter, you will learn how to...

Web Design for Print Designers WEB DESIGN FOR PRINT DESIGNERS: WEEK 6

Microsoft Expression Web Quickstart Guide

Creating A Webpage Using HTML & CSS

Level 1 - Clients and Markup

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

How to craft a modern, mobile-optimized HTML template. Jason Samuels, NCFR IT Manager DrupalCamp Twin Cities May 2012

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 (

CSS - Cascading Style Sheets

Appendix H: Cascading Style Sheets (CSS)

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

IAS Web Development using Dreamweaver CS4

Web Design and Development ACS Chapter 9. Page Structure

Fireworks CS4 Tutorial Part 1: Intro

Interactive Data Visualization for the Web Scott Murray

Mobile Web Site Style Guide

CSS for Page Layout. Key Concepts

ICE: HTML, CSS, and Validation

Dreamweaver CS5. Module 1: Website Development

Kentico CMS, 2011 Kentico Software. Contents. Mobile Development using Kentico CMS 6 2 Exploring the Mobile Environment 1

KOMPOZER Web Design Software

How to create buttons and navigation bars

Creating Web Pages With Dreamweaver MX 2004

Foundations. Web Development and Design. with HTML5. [Terry Ann Felke-Morris, Ed.D.J. 6th Edition. Harper College. Piyali Sengupta.

Recreate your Newsletter Content and Layout within Informz (Workshop) Monica Capogna and Dan Reade. Exercise: Creating two types of Story Layouts

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

C:\wamp\www\webdok\07bootstrap\bootstrap dist\css\bootstrap.css 2. juli :18

Slicing and Coding the Navigation Background in CSS

WEB DESIGN COURSE CONTENT

CHAPTER 10. When you complete this chapter, you will be able to:

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

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

Print all 18 Chapters - CSS Basics

Create Your own Company s Design Theme

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Dreamweaver. Introduction to Editing Web Pages

To change title of module, click on settings

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

Create a Poster Using Publisher

How to Build a SharePoint Website

Development Perspective: DIV and CSS HTML layout. Web Design. Lesson 2. Development Perspective: DIV/CSS

Microsoft Expression Web

A send-a-friend application with ASP Smart Mailer

Web Design Standards

Designing HTML s for Use in the Advanced Editor

Scoop Hosted Websites. USER MANUAL PART 4: Advanced Features. Phone: scoop@scoopdigital.com.au Website: scoopdigital.com.

TUTORIAL 4 Building a Navigation Bar with Fireworks

Web Development I & II*

Support Notes (Issue 1) September IGphones. Certificate in Digital Applications (DA105) Coding for the Web

SAML Authentication Quick Start Guide

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

CSS Techniques: Scrolling gradient over a fixed background

Web Building Blocks. Joseph Gilbert User Experience Web Developer University of Virginia Library

COURSES > WEBTECHNOLOGIE ( )_1 > SCHEDULES. Week Time Room Subject Literature Tutor

Terminal 4 Site Manager User Guide. Need help? Call the ITD Lab, x7471

Create a Simple Website. Intel Easy Steps Intel Corporation All rights reserved.

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

Taskstream Technical & System FAQs

The Essential Guide to HTML Design

Creating Personal Web Sites Using SharePoint Designer 2007

Transcription:

Introduction to Adobe Dreamweaver CC What is Dreamweaver? Dreamweaver is the program that we will be programming our websites into all semester. We will be slicing our designs out of Fireworks and assembling them in Dreamweaver. What is HTML? HTML stands for Hypertext Markup Language and is the programming language that is used to create web pages and websites. What is CSS? CSS stands for Cascading Style Sheets. Think back to your page layout class when you learned InDesign. Remember how you used character and paragraph styles? We do similarly in web. In web the HTML is your artboard and your CSS file is what contains all of your styling for your entire website. The styles you set up in your style sheet are universal to your entire website. In your CSS this is where you will style all of your text, positioning, colors, background colors, alignment, etc. How does my HTML know to use my CSS? We have to link our CSS to our HTML which will we will do as we set up our document below. How do I get started in Dreamweaver? 1) Create a new HTML file. Go to File > New > HTML. Name your first HTML file index.html. Save your HTML file to a new folder your create within your project folder named Site. NOTE: Every website you create

needs to have a index.html file or else the browser will not know where to look for the home page of your website and your website will go nowhere. 2) Create a new CSS file. Go to File > New > CSS. Name your first CSS file something like style.css, the name of your file is completely up to you. Just keep your file name all lower case and remember to use underscores in place of spaces in your file names. Save your CSS to the same folder you just saved your HTML file to. 3) Site Manage. It is very important to always site manage your website so that you know you are always working off the latest files. You need to do this anytime you start working on a different computer regardless if it is in the lab or at home. To Site Manage: Go to Site > Manage Sites. Click New Site. Then name your site something like: BEH375_Project1 and browse for the file path to the site folder where you just saved your HTML and CSS files. When done click Save then Done on the next window.

Now over on the right in Dreamweaver you should see a tabbed folder named Files that shows all of your HTML & CSS files you have created so far. If you don t see this can you find it in the Dreamweaver menu by going to Window > Files. See example below:

Linking HTML & CSS Together Open up your index.html file and go to the CSS Designer tab window on the right. If you can t find it go to Windows > CSS Designer. Click on the + symbol to attach your CSS file. Then click on Attach Existing File. NOTE: You only have to do this one time during your project unless you break the CSS attaching. To be safe do not move any files around and you will avoid breaking it. Browse your site folder for the CSS file your created earlier, once you find it make sure the radio button for link is checked then click OK. NOW WE ARE READY TO CODE! HTML Selectors 1) Div s They are unique styles you are adding (used majority of the time). Div s begin with a # sign. Example: <div id= header >Header Content Goes Here</div>

2) Classes They are reusable styles you are adding. Classes begin with a period. Example: <div class=.gray_color >Text Goes Here</div>) How to Add a Div ID/Class 1. Go to your HTML file. 2. Make sure that your cursor is between the two body tags <body></body>. 3. Go to Insert > Div. In the space next to ID put in the name of the ID you want to create. 4. Repeat this process for your header, navigation, content area, footer, etc. How to Add a Div ID/Class to your CSS

1) In your CSS Designer panel go to Sources and click on your CSS file there. 2) Go to Selectors and click the + to add your ID for your header, underneath the search tool type in name for your DIV with a # sign before it (Example: #header). 3) Go to Properties, (this is the character and paragraph styles reference from InDesign). This is where you will set the width, height, colors, background colors, fonts, positioning, text-alignment, etc.

Use the CSS Designer > Properties panel to add all styling to your website. If you cannot find something go through the icons and scroll through. If you are stuck with adding the CSS styles you want, you can also reference the PDF on the class website called CSS Cheat Sheet to see what the code should look like in the CSS style sheet and type it in that way if you prefer. Here is a breakdown of what each Properties area contains: Layout Text Border Background Others Min-width Font-style Border-color Backgroundimage gradient Min-height Font-variant Border-width Backgroundposition Max-width Font-weight Border-style Backgroundsize Max-height Font-size Border-radius Backgroundclip Line-height Backgroundrepeat Margin Backgroundorigin Padding Text-align Backgroundattachment Positioning Textdecoration Text-indent Box-shadow Float Text-shadow Clear Texttransform Width color Bordercollapse Height Font-family Borderspacing Backgroundcolor Backgroundimage url List-styleposition List-styleimage List-style-type Overflow-x Overflow-y Letter-spacing Word-spacing White-space

Display Visibility Z-index Opracity Vertical-align