Basic Web Design Using Dreamweaver

Slides:



Advertisements
Similar presentations
Chapter 3 – Web Design Tables & Page Layout
Advertisements

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.
Teppo Räisänen LIIKE/OAMK 2010
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Instructional Technology & Design Office or Insert Workshop Name Presented by Your Name Here.
Web Content Management System Website Maintenance Demonstration Introduction to Macromedia Contribute Jamie Uprichard.
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.
HTML Computing Concepts HTML - An Introduction 1.
Lecture 2B: HTML and CSS IT 202—Internet Applications Based on notes developed by Morgan Benton.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
Review HTML  What is HTML?  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
Getting Started with Expression Web 3
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
© Ms. Masihi.  The Dreamweaver Welcome Screen first opens when you start Dreamweaver.  This screen gives you quick access to previously opened files,
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: –The head content –The body Creating Head Content and Setting Page Properties.
Website Development with Dreamweaver
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 8 1 Creating Effective Web Pages Creating HTML Documents Tutorial 8.
Session 1 SESSION 1 Working with Dreamweaver 8.0.
Creating Webpage Using HTML
Lesson 12: Working with Code-editing Features Introduction to Adobe Dreamweaver CS6 Adobe Certified Associate: Web Communication using Adobe Dreamweaver.
Dreamweaver MX BTA3Open. Dreamweaver MX Application used for creating web sites Homepage must always be saved as index.htm All files names must be in.
XP New Perspectives on Microsoft Office FrontPage 2003 Tutorial 1 1 Microsoft Office FrontPage 2003 Tutorial 1 – Creating a Web Site.
1 Creating Web Pages Part 1. 2 OVERVIEW: HTML-What is it? HyperText Markup Language, the authoring language used to create documents on the World Wide.
Basic Web Design Using Dreamweaver Robby Seitz 121 Powers Hall
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
Louisa Lambregts, Louisa Lambregts
HTML A brief introduction HTML1. HTML, what is? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup.
Chapter 8 HTML Editors. Copyright © 2006 Pearson Addison-Wesley. All rights reserved. 8-2 Text Editors Text editors don't have word processing features.
Cascading Style Sheets (CSS) EXPLORING COMPUTER SCIENCE – LESSON 3-5.
HTML. HTML: What is it? – HTML stands for Hyper Text Markup Language – An HTML file is a text file containing small markup tags – The markup tags tell.
Basic Web Page Design. Text book: HTML, XHTML, and CSS: Visual QuickStart Guide, Sixth Edition written by Elizabeth Castro. Software: Adobe® Dreamweaver®
COMP 143 Web Development with Adobe Dreamweaver CC.
Chapter 4 and 5. Objectives Introduce markup: elements and attributes How browsers interpret HTML documents Basic structure of HTML document What do style.
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
HTML Structure & syntax
Getting Started with HTML
Fall 2016 CSULA Saloni Chacha
INTRO TO WEB DEVELOPMENT html
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
Create and edit web pages 4
XHTML/CSS Week 1.
4.01B Authoring Languages and Web Authoring Software
How to create a static website with HTML
Web Design and Development
Coding, Testing and Valdating a Web Page
Intro to Web Development Class A Review
HTML Robert McIntosh
INTRODUCTION TO HTML5.
HTML.
Creating a Successful Web Presence
4.01B Authoring Languages and Web Authoring Software
HTML A brief introduction HTML.
Web Technologies for Business
HTML HYPERTEXT MARKUP LANGUAGE.
Objective Understand web-based digital media production methods, software, and hardware. Course Weight : 10%
Unit A.
Introduction to HTML5.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HTML Structure & syntax
Lesson 2: HTML5 Coding.
5.00 Apply procedures to organize content by using Dreamweaver. (22%)
4.00 Apply procedures to add content by using Dreamweaver. (22%)
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Basic Web Design Using Dreamweaver Robby Seitz 121 Powers Hall 915-7822 rseitz@olemiss.edu

Basic Web Design What is the easiest way to build or update a Web page? Get someone else do it for you. What can you give someone to help them build a good Web page for you? Money.

Methods Compared Method Builder Skills Required Management Issues . MS Word & Publisher Not intended for Web pages Creates illegible code Almost impossible to update Non-standard HTML FrontPage Strong use of templates FrontPage original files required to maintain Massive file sizes Google Sites, FaceBook, etc. No skills needed Limited flexibility Locked into domain name Easy to update – Difficult to mess up! WordPress Skills depend on level of interaction needed: Ranges from easy to very difficult Easy for everyday tasks Not so easy for major changes Dreamweaver Serious HTML knowledge Lots of assistance provided Clear and standard HTML is written and may be edited by any capable program/person Text editor In-depth HTML knowledge Ditto above .

HTML Basics Hyper-Text Markup Language Don’t worry, there is a cheatsheet! (Source: http://rebs.ms/htmlcheats /)

HTML Basics Markup Tags - Nesting Open, surround, close <tag attribute=“value”…>stuff</tag> <a href=“http://www.olemiss.edu”>Link</a> <p>This is my very short paragraph.</p> Empty or self-closing <img src=“mypic.jpg” /> <br />

HTML Basics Spacing doesn’t matter (much), but indentation helps show nesting. <html> <head> <title>Robby’s Page</title> </head> <body> This is a picture of my cat, Lou.<br /> <img src=“mycat.jpg” /> </body> </html>

HTML Basics

Web Concepts Expect viewers to see things differently. Obstacles to consistent page rendering include: Different browser versions Different screen resolutions Different accessibility needs Different mobile devices

Web Concepts Keep layout and content as separate as possible. Content – Information and its contextual meaning. Layout – The format and arrangement of information.

Basic Dreamweaver Parts of the screen Top menu: File, Edit, View… Top toolbar: Common, Layout, Forms…

Basic Dreamweaver Parts of the screen Tabs: Document names Code/Design views File Transfer, Validation

Basic Dreamweaver Parts of the screen Tag Selector Properties window: Format, Style, Align…

Basic Dreamweaver Parts of the screen Windows on right side: Files, CSS…

Basic Web Design Using Dreamweaver www.dreamweaver.com Robby Seitz 121 Powers Hall 915-7822 rseitz@olemiss.edu