SlideShare a Scribd company logo
1 of 12
Introduction to
Dreamweaver
N.Ruba
Assistant Professor
Dept. of Computer Applications
Bon Secours College for Women
Thanjavur
Introduction to Dreamweaver
Adobe Dreamweaver is a software application that allows you to create and
develop Web sites. Dreamweaver is considered WYSIWYG (What You See
Is What You Get), meaning that when you format your Web page, you see
the results of the formatting instead of the mark-ups that are used for
formatting. HTML is not WYSIWYG, whereas Microsoft Word is
WYSIWYG. However, Dreamweaver allows you to hand code HTML as well.
Dreamweaver also supports CSS and JavaScript as well as other languages
including ASP and PHP. Dreamweaver makes it easy to upload your entire
Web site to a Web server. You can also preview your site locally.
Dreamweaver also lets you create templates for your Web site that you can
use again and again by modifying certain unrestricted areas within the
template.
Then if you want to change one particular part of your Web site (the logo
changes, a main link changes), you only have to modify the template for
the changes to propagate throughout your Web site. Dreamweaver is fairly
complex software. In this lab we will be getting a basic introduction to this
software package.
Using Dreamweaver Dreamweaver is a web
authoring program that uses a WYSIWYG “what you
see is what you get” interface. The HTML code is being
created and is accessible to you if you want to play with
it.
1. Start Dreamweaver. You should see a startup screen.
Dreamweaver lets you publish your Web site by easily
uploading your Web site to a Web server. Right now we
won’t be worrying about that. For now, you will be
creating and viewing your site locally (which means
the site will be located on your computer).
Create a New Site
2. From the Site menu, choose HTML under Create New.
Making your first Web Page
3. You should now see a blank Web page in the
Document Window.
4. Under the File Menu (top left of Dreamweaver work
area), choose Save.
5. In the Save As box, find your Web site folder and save
your file as index.html
6. Click Save. Congratulations! You’ve created your first
Web page using Dreamweaver. Unfortunately, it’s
pretty boring at the moment.
RULES OF THUMB for naming web files
• Do not use spaces or special characters, such as those
found above the number keys on the keyboard, in your
file names. You can use dashes and underscores. (e.g.,
my_page.html) • Always use a 3- or 4-character file
extension for every file you use on the Web. In the case
of a regular Web page, always use .htm or .html.
• Be very specific about capitalizing because most Web
servers are case-sensitive.
Give your Web Page a Title
In the document toolbar, find the Title box.
7. On the document toolbar (across top of Dreamweaver
work area), locate the Title field.
8. Type in a title for your page. Feel free to be creative
(but not indecent).
9. The title doesn’t show up on the page, but will appear
in tabs and across the top of browsers
Adding Some Content Add Content to the Page
10. If you’ve got Split selected (right above the work area but below the top
menus), you should have a split screen – the left half will be your html
code and the right half will be a blank document window. You can
always elect to click on the code button to just view code, or the design
button to just see what your design will look like. For now, work on the
right side in the document window. In this right document window,
type in a good head title. This one will be the head title at the top of
your Web page. If you can’t think of anything, you can always use,
“Aardvark Adoption Society of Delaware”.
11. Add a subtitle below it. Again, it can be anything you want. If you’d
prefer, it could be, “We speak for Aardvarks who can’t speak for
themselves.”
12. If you still have split screen, notice how Dreamweaver automatically
puts html tags around the text we’ve typed in. It’s not what we want –
we’ll change that shortly.
13. Now that you’ve got a good title, add some content. Logically, it should
go with the title. Type one or two lines now for now. We’ll add more
later. If you like, I’ve included some content on my web site about
Aardvark adoption that you can use. If you copy and paste the content,
again, notice that Dreamweaver automatically puts html tags around
the text we’ve copied and pasted. We will be changing most of those
tags below.
Now let’s format the content
14. In the document window, highlight the header title.
15. In the Property Inspector (usually at the bottom), click on
the Format drop down arrow, and choose Heading 1. Note:
If you do not see the Property Inspector, in the menu across
the top choose Window >> Properties.
16. In the document window, highlight “We speak for
aardvarks…”.
17. From the Format menu on the Property Inspector, choose
Heading 2. Note: When formatting your text, keep in mind
that text sizes in HTML are relative sizes. This means that,
when your page is viewed in a browser, the text size will
depend on the default text size settings on each user’s
computer. Relative sizes give users the ability to adjust the
text size to suit their individual needs. This option is
especially important for people with visual impairments,
but it means that the appearance of your pages may vary
from computer to computer.
Playing with Font Properties
18. Highlight the Subtitle (We speak for Aardvarks…).
19. Make sure the CSS is selected in the properties pane Change the
font size to 24. .
20. You’ll get a window telling you to create a New CSS Rule. Under
Selector Type choose Tag (redefines an HTML element)
21. Hit OK (If you still have your code window pane open on the
left, you can see the style added in the head section of your html
code).
22. With “We speak for Aardvarks…” still highlighted, click the
Bold icon ( ) in the Property Inspector. The selected word
appears bold.
23. Click the gray square to the right of the Size popup menu in the
Property Inspector. A grid of colored squares appears, and the
cursor changes to an eye dropper.
24. Click the eyedropper on the desired color. The field to the right
of the color swatch reflects the code Web browsers need to
correctly display the color you’ve chosen. (Note – if the CSS pop-
up box appears again, just select Tag again)
25. Click anywhere on the page to deselect the text. The previously
selected text appears in the new color.
Alignment
26. With “We Speak for Aardvarks…” selected on the
page, click on Align Center button on the Property
Inspector. The subtitle (h2) should now be centered on
your page.
27. Select the head title (“Aardvark Adoption Society of
Delaware) and choose Align Center. You’ll get the New
CSS Rule pop-up window. Make sure Tag is selected
(the tag should be h1) and click OK. You should now
have 2 rules in the head section of your html code. Feel
free to play with color and size of h1 as well.
Creating Lists
28. First we need to add a list.
29. Type in a title for your list and then type in a list of items. Make sure
there are at least 3 items in your list. Make sure you hit return after each
item. (Feel free to use a list from the aardvark content if you can’t think
of your own. I used the list titled “Specifically, we need…”
30. Highlight the list title and choose Heading 3 from the Format menu
on the Property Inspector (Make sure HTML is selected, not CSS).
31. Highlight the list items and click the Unordered List button on the
Property Inspector.
32. The items appear as a bulleted list.
33. Now type in another List title and another list of items, or use the one
within the content on the web page. (I used the one titled, “Please note
the following rules”).
34. Highlight the title and select Heading 3 (Note: if using copied code,
you may need to put the title on a separate line by hitting the enter
button)
35. Highlight the rest of the items and click the Ordered List button on
the Property inspector (next to the ordered list button). The items
should now appear in a numbered list
36. Save your work. Get into the habit of saving your work regularly
Thank you

More Related Content

What's hot

Welcome to word 2016
Welcome to word 2016Welcome to word 2016
Welcome to word 2016JasminMiranda7
 
Beginners Microsoft Office Word 2007 Lesson 1
Beginners Microsoft Office Word 2007 Lesson 1Beginners Microsoft Office Word 2007 Lesson 1
Beginners Microsoft Office Word 2007 Lesson 1adultref
 
Introduction to Microsoft Word 2007 (Tutrial and Tips)
Introduction to Microsoft Word 2007 (Tutrial and Tips)Introduction to Microsoft Word 2007 (Tutrial and Tips)
Introduction to Microsoft Word 2007 (Tutrial and Tips)Elyssa Marie Bulandan
 
Dreamweaver cs6
Dreamweaver cs6Dreamweaver cs6
Dreamweaver cs6Mudasir Syed
 
APA Formatting in a Word Document
APA Formatting in a Word DocumentAPA Formatting in a Word Document
APA Formatting in a Word DocumentAmanda M Richards
 
CHILD Site Coordinator Training
CHILD Site Coordinator TrainingCHILD Site Coordinator Training
CHILD Site Coordinator Trainingehealth
 
Indesign training
Indesign training Indesign training
Indesign training TibAct
 
Week 2 ms word ait
Week 2 ms word   aitWeek 2 ms word   ait
Week 2 ms word aitIrfan Ali Memon
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1Heather Rock
 
Html,javascript & css
Html,javascript & cssHtml,javascript & css
Html,javascript & cssPredhin Sapru
 
Microsoft word basics2
Microsoft word basics2Microsoft word basics2
Microsoft word basics2Adithya Bharadwaj
 
OpenOffice.Org Writer Tutorial
OpenOffice.Org Writer TutorialOpenOffice.Org Writer Tutorial
OpenOffice.Org Writer Tutorialvargy
 
Visualforce css developer guide(by forcetree.com)
Visualforce css developer guide(by forcetree.com)Visualforce css developer guide(by forcetree.com)
Visualforce css developer guide(by forcetree.com)Edwin Vijay R
 
Create A Pbworks
Create A PbworksCreate A Pbworks
Create A Pbworksebertsheri
 
Unit vi. lesson 1 & 2. offline application
Unit vi. lesson 1 & 2. offline applicationUnit vi. lesson 1 & 2. offline application
Unit vi. lesson 1 & 2. offline applicationapolsoft2016
 
Edison learning cms_manual
Edison learning cms_manualEdison learning cms_manual
Edison learning cms_manualJennifer Pricci
 
Customizing the Appearance and HTML Output of Visualforce Pages
Customizing the Appearance and HTML Output of VisualforcePages Customizing the Appearance and HTML Output of VisualforcePages
Customizing the Appearance and HTML Output of Visualforce Pages Mohammed Safwat Abu Kwaik
 

What's hot (17)

Welcome to word 2016
Welcome to word 2016Welcome to word 2016
Welcome to word 2016
 
Beginners Microsoft Office Word 2007 Lesson 1
Beginners Microsoft Office Word 2007 Lesson 1Beginners Microsoft Office Word 2007 Lesson 1
Beginners Microsoft Office Word 2007 Lesson 1
 
Introduction to Microsoft Word 2007 (Tutrial and Tips)
Introduction to Microsoft Word 2007 (Tutrial and Tips)Introduction to Microsoft Word 2007 (Tutrial and Tips)
Introduction to Microsoft Word 2007 (Tutrial and Tips)
 
Dreamweaver cs6
Dreamweaver cs6Dreamweaver cs6
Dreamweaver cs6
 
APA Formatting in a Word Document
APA Formatting in a Word DocumentAPA Formatting in a Word Document
APA Formatting in a Word Document
 
CHILD Site Coordinator Training
CHILD Site Coordinator TrainingCHILD Site Coordinator Training
CHILD Site Coordinator Training
 
Indesign training
Indesign training Indesign training
Indesign training
 
Week 2 ms word ait
Week 2 ms word   aitWeek 2 ms word   ait
Week 2 ms word ait
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1
 
Html,javascript & css
Html,javascript & cssHtml,javascript & css
Html,javascript & css
 
Microsoft word basics2
Microsoft word basics2Microsoft word basics2
Microsoft word basics2
 
OpenOffice.Org Writer Tutorial
OpenOffice.Org Writer TutorialOpenOffice.Org Writer Tutorial
OpenOffice.Org Writer Tutorial
 
Visualforce css developer guide(by forcetree.com)
Visualforce css developer guide(by forcetree.com)Visualforce css developer guide(by forcetree.com)
Visualforce css developer guide(by forcetree.com)
 
Create A Pbworks
Create A PbworksCreate A Pbworks
Create A Pbworks
 
Unit vi. lesson 1 & 2. offline application
Unit vi. lesson 1 & 2. offline applicationUnit vi. lesson 1 & 2. offline application
Unit vi. lesson 1 & 2. offline application
 
Edison learning cms_manual
Edison learning cms_manualEdison learning cms_manual
Edison learning cms_manual
 
Customizing the Appearance and HTML Output of Visualforce Pages
Customizing the Appearance and HTML Output of VisualforcePages Customizing the Appearance and HTML Output of VisualforcePages
Customizing the Appearance and HTML Output of Visualforce Pages
 

Similar to Dreamweaver

Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5seanoiii
 
Copycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastCopycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastEdward806784
 
Dw cs3-introduction
Dw cs3-introductionDw cs3-introduction
Dw cs3-introductionkoinoniamedia
 
Introduction to Dreamweaver
Introduction to DreamweaverIntroduction to Dreamweaver
Introduction to DreamweaverSarah Bombich
 
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREWeb Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREjatin batra
 
HTML Lab ProjectTo create a simple web page you will need to use.docx
HTML Lab ProjectTo create a simple web page you will need to use.docxHTML Lab ProjectTo create a simple web page you will need to use.docx
HTML Lab ProjectTo create a simple web page you will need to use.docxfideladallimore
 
CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01mwarrick
 
Dreamweaver-Day 02: Hotspots & Page Linking
Dreamweaver-Day 02: Hotspots & Page LinkingDreamweaver-Day 02: Hotspots & Page Linking
Dreamweaver-Day 02: Hotspots & Page LinkingJoe Prindiville
 
SYSTEMS DESIGN / CAPSTONE PROJECT
SYSTEMS DESIGN / CAPSTONE PROJECTSYSTEMS DESIGN / CAPSTONE PROJECT
SYSTEMS DESIGN / CAPSTONE PROJECTSanjay Saluth
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.docbutest
 
Oracle ADF 11g Skinning Tutorial
Oracle ADF 11g Skinning TutorialOracle ADF 11g Skinning Tutorial
Oracle ADF 11g Skinning TutorialRakesh Gujjarlapudi
 
HTML Lab ProjectTo create a simple web page you will need .docx
HTML Lab ProjectTo create a simple web page you will need .docxHTML Lab ProjectTo create a simple web page you will need .docx
HTML Lab ProjectTo create a simple web page you will need .docxadampcarr67227
 
Unit c adobe dreamweaver cs6
Unit c adobe dreamweaver cs6Unit c adobe dreamweaver cs6
Unit c adobe dreamweaver cs6Krista Lawrence
 

Similar to Dreamweaver (20)

Dw Lesson01
Dw Lesson01Dw Lesson01
Dw Lesson01
 
Dreamweaver
DreamweaverDreamweaver
Dreamweaver
 
Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5Basic tutorial dreamweaver_cs5
Basic tutorial dreamweaver_cs5
 
Dreamweaver8
Dreamweaver8Dreamweaver8
Dreamweaver8
 
Copycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fastCopycat Site BluePrint - make money online fast
Copycat Site BluePrint - make money online fast
 
Dw cs3-introduction
Dw cs3-introductionDw cs3-introduction
Dw cs3-introduction
 
Introduction to Dreamweaver
Introduction to DreamweaverIntroduction to Dreamweaver
Introduction to Dreamweaver
 
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTREWeb Designing Training in Ambala ! BATRA COMPUTER CENTRE
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
 
HTML Lab ProjectTo create a simple web page you will need to use.docx
HTML Lab ProjectTo create a simple web page you will need to use.docxHTML Lab ProjectTo create a simple web page you will need to use.docx
HTML Lab ProjectTo create a simple web page you will need to use.docx
 
CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01CBIS 327 ~ Chapter 01
CBIS 327 ~ Chapter 01
 
Walkthrough asp.net
Walkthrough asp.netWalkthrough asp.net
Walkthrough asp.net
 
Dreamweaver-Day 02: Hotspots & Page Linking
Dreamweaver-Day 02: Hotspots & Page LinkingDreamweaver-Day 02: Hotspots & Page Linking
Dreamweaver-Day 02: Hotspots & Page Linking
 
SYSTEMS DESIGN / CAPSTONE PROJECT
SYSTEMS DESIGN / CAPSTONE PROJECTSYSTEMS DESIGN / CAPSTONE PROJECT
SYSTEMS DESIGN / CAPSTONE PROJECT
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Intermediate Web Design.doc
Intermediate Web Design.docIntermediate Web Design.doc
Intermediate Web Design.doc
 
Oracle ADF 11g Skinning Tutorial
Oracle ADF 11g Skinning TutorialOracle ADF 11g Skinning Tutorial
Oracle ADF 11g Skinning Tutorial
 
Dreaweaver cs5
Dreaweaver cs5Dreaweaver cs5
Dreaweaver cs5
 
HTML Lab ProjectTo create a simple web page you will need .docx
HTML Lab ProjectTo create a simple web page you will need .docxHTML Lab ProjectTo create a simple web page you will need .docx
HTML Lab ProjectTo create a simple web page you will need .docx
 
Unit c adobe dreamweaver cs6
Unit c adobe dreamweaver cs6Unit c adobe dreamweaver cs6
Unit c adobe dreamweaver cs6
 
Raju html
Raju htmlRaju html
Raju html
 

More from RubaNagarajan

Computer graphics-CRT.pptx
Computer graphics-CRT.pptxComputer graphics-CRT.pptx
Computer graphics-CRT.pptxRubaNagarajan
 
Matrix representation- CG.pptx
Matrix representation- CG.pptxMatrix representation- CG.pptx
Matrix representation- CG.pptxRubaNagarajan
 
Personality development.pptx
Personality development.pptxPersonality development.pptx
Personality development.pptxRubaNagarajan
 
TRANSFORMATION-CG.pptx
TRANSFORMATION-CG.pptxTRANSFORMATION-CG.pptx
TRANSFORMATION-CG.pptxRubaNagarajan
 
dda algorithm-cg.pptx
dda algorithm-cg.pptxdda algorithm-cg.pptx
dda algorithm-cg.pptxRubaNagarajan
 
line attributes.pptx
line attributes.pptxline attributes.pptx
line attributes.pptxRubaNagarajan
 
Java files and io streams
Java files and io streamsJava files and io streams
Java files and io streamsRubaNagarajan
 
Java -Exception handlingunit-iv
Java -Exception handlingunit-ivJava -Exception handlingunit-iv
Java -Exception handlingunit-ivRubaNagarajan
 
Java Programming
Java Programming Java Programming
Java Programming RubaNagarajan
 
Features of java unit 1
Features of java unit 1Features of java unit 1
Features of java unit 1RubaNagarajan
 
Introduction to Java -unit-1
Introduction to Java -unit-1Introduction to Java -unit-1
Introduction to Java -unit-1RubaNagarajan
 
Constructors in C++
Constructors in C++Constructors in C++
Constructors in C++RubaNagarajan
 
Working principles of internet
Working principles of internetWorking principles of internet
Working principles of internetRubaNagarajan
 
OPERATING SYSTEM
OPERATING SYSTEMOPERATING SYSTEM
OPERATING SYSTEMRubaNagarajan
 
Virtualization in cloud computing
Virtualization in cloud computingVirtualization in cloud computing
Virtualization in cloud computingRubaNagarajan
 
Cloud computing technology
Cloud computing technologyCloud computing technology
Cloud computing technologyRubaNagarajan
 

More from RubaNagarajan (19)

Computer graphics-CRT.pptx
Computer graphics-CRT.pptxComputer graphics-CRT.pptx
Computer graphics-CRT.pptx
 
Matrix representation- CG.pptx
Matrix representation- CG.pptxMatrix representation- CG.pptx
Matrix representation- CG.pptx
 
Personality development.pptx
Personality development.pptxPersonality development.pptx
Personality development.pptx
 
TRANSFORMATION-CG.pptx
TRANSFORMATION-CG.pptxTRANSFORMATION-CG.pptx
TRANSFORMATION-CG.pptx
 
dda algorithm-cg.pptx
dda algorithm-cg.pptxdda algorithm-cg.pptx
dda algorithm-cg.pptx
 
line attributes.pptx
line attributes.pptxline attributes.pptx
line attributes.pptx
 
Java files and io streams
Java files and io streamsJava files and io streams
Java files and io streams
 
Java -Exception handlingunit-iv
Java -Exception handlingunit-ivJava -Exception handlingunit-iv
Java -Exception handlingunit-iv
 
Java Programming
Java Programming Java Programming
Java Programming
 
Features of java unit 1
Features of java unit 1Features of java unit 1
Features of java unit 1
 
Introduction to Java -unit-1
Introduction to Java -unit-1Introduction to Java -unit-1
Introduction to Java -unit-1
 
Constructors in C++
Constructors in C++Constructors in C++
Constructors in C++
 
Risks in cc
Risks in ccRisks in cc
Risks in cc
 
Working principles of internet
Working principles of internetWorking principles of internet
Working principles of internet
 
Coreldraw
CoreldrawCoreldraw
Coreldraw
 
C programming
C programmingC programming
C programming
 
OPERATING SYSTEM
OPERATING SYSTEMOPERATING SYSTEM
OPERATING SYSTEM
 
Virtualization in cloud computing
Virtualization in cloud computingVirtualization in cloud computing
Virtualization in cloud computing
 
Cloud computing technology
Cloud computing technologyCloud computing technology
Cloud computing technology
 

Recently uploaded

Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Recently uploaded (20)

Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 

Dreamweaver

  • 1. Introduction to Dreamweaver N.Ruba Assistant Professor Dept. of Computer Applications Bon Secours College for Women Thanjavur
  • 2. Introduction to Dreamweaver Adobe Dreamweaver is a software application that allows you to create and develop Web sites. Dreamweaver is considered WYSIWYG (What You See Is What You Get), meaning that when you format your Web page, you see the results of the formatting instead of the mark-ups that are used for formatting. HTML is not WYSIWYG, whereas Microsoft Word is WYSIWYG. However, Dreamweaver allows you to hand code HTML as well. Dreamweaver also supports CSS and JavaScript as well as other languages including ASP and PHP. Dreamweaver makes it easy to upload your entire Web site to a Web server. You can also preview your site locally. Dreamweaver also lets you create templates for your Web site that you can use again and again by modifying certain unrestricted areas within the template. Then if you want to change one particular part of your Web site (the logo changes, a main link changes), you only have to modify the template for the changes to propagate throughout your Web site. Dreamweaver is fairly complex software. In this lab we will be getting a basic introduction to this software package.
  • 3. Using Dreamweaver Dreamweaver is a web authoring program that uses a WYSIWYG “what you see is what you get” interface. The HTML code is being created and is accessible to you if you want to play with it. 1. Start Dreamweaver. You should see a startup screen. Dreamweaver lets you publish your Web site by easily uploading your Web site to a Web server. Right now we won’t be worrying about that. For now, you will be creating and viewing your site locally (which means the site will be located on your computer).
  • 4. Create a New Site 2. From the Site menu, choose HTML under Create New. Making your first Web Page 3. You should now see a blank Web page in the Document Window. 4. Under the File Menu (top left of Dreamweaver work area), choose Save. 5. In the Save As box, find your Web site folder and save your file as index.html 6. Click Save. Congratulations! You’ve created your first Web page using Dreamweaver. Unfortunately, it’s pretty boring at the moment.
  • 5. RULES OF THUMB for naming web files • Do not use spaces or special characters, such as those found above the number keys on the keyboard, in your file names. You can use dashes and underscores. (e.g., my_page.html) • Always use a 3- or 4-character file extension for every file you use on the Web. In the case of a regular Web page, always use .htm or .html. • Be very specific about capitalizing because most Web servers are case-sensitive.
  • 6. Give your Web Page a Title In the document toolbar, find the Title box. 7. On the document toolbar (across top of Dreamweaver work area), locate the Title field. 8. Type in a title for your page. Feel free to be creative (but not indecent). 9. The title doesn’t show up on the page, but will appear in tabs and across the top of browsers
  • 7. Adding Some Content Add Content to the Page 10. If you’ve got Split selected (right above the work area but below the top menus), you should have a split screen – the left half will be your html code and the right half will be a blank document window. You can always elect to click on the code button to just view code, or the design button to just see what your design will look like. For now, work on the right side in the document window. In this right document window, type in a good head title. This one will be the head title at the top of your Web page. If you can’t think of anything, you can always use, “Aardvark Adoption Society of Delaware”. 11. Add a subtitle below it. Again, it can be anything you want. If you’d prefer, it could be, “We speak for Aardvarks who can’t speak for themselves.” 12. If you still have split screen, notice how Dreamweaver automatically puts html tags around the text we’ve typed in. It’s not what we want – we’ll change that shortly. 13. Now that you’ve got a good title, add some content. Logically, it should go with the title. Type one or two lines now for now. We’ll add more later. If you like, I’ve included some content on my web site about Aardvark adoption that you can use. If you copy and paste the content, again, notice that Dreamweaver automatically puts html tags around the text we’ve copied and pasted. We will be changing most of those tags below.
  • 8. Now let’s format the content 14. In the document window, highlight the header title. 15. In the Property Inspector (usually at the bottom), click on the Format drop down arrow, and choose Heading 1. Note: If you do not see the Property Inspector, in the menu across the top choose Window >> Properties. 16. In the document window, highlight “We speak for aardvarks…”. 17. From the Format menu on the Property Inspector, choose Heading 2. Note: When formatting your text, keep in mind that text sizes in HTML are relative sizes. This means that, when your page is viewed in a browser, the text size will depend on the default text size settings on each user’s computer. Relative sizes give users the ability to adjust the text size to suit their individual needs. This option is especially important for people with visual impairments, but it means that the appearance of your pages may vary from computer to computer.
  • 9. Playing with Font Properties 18. Highlight the Subtitle (We speak for Aardvarks…). 19. Make sure the CSS is selected in the properties pane Change the font size to 24. . 20. You’ll get a window telling you to create a New CSS Rule. Under Selector Type choose Tag (redefines an HTML element) 21. Hit OK (If you still have your code window pane open on the left, you can see the style added in the head section of your html code). 22. With “We speak for Aardvarks…” still highlighted, click the Bold icon ( ) in the Property Inspector. The selected word appears bold. 23. Click the gray square to the right of the Size popup menu in the Property Inspector. A grid of colored squares appears, and the cursor changes to an eye dropper. 24. Click the eyedropper on the desired color. The field to the right of the color swatch reflects the code Web browsers need to correctly display the color you’ve chosen. (Note – if the CSS pop- up box appears again, just select Tag again) 25. Click anywhere on the page to deselect the text. The previously selected text appears in the new color.
  • 10. Alignment 26. With “We Speak for Aardvarks…” selected on the page, click on Align Center button on the Property Inspector. The subtitle (h2) should now be centered on your page. 27. Select the head title (“Aardvark Adoption Society of Delaware) and choose Align Center. You’ll get the New CSS Rule pop-up window. Make sure Tag is selected (the tag should be h1) and click OK. You should now have 2 rules in the head section of your html code. Feel free to play with color and size of h1 as well.
  • 11. Creating Lists 28. First we need to add a list. 29. Type in a title for your list and then type in a list of items. Make sure there are at least 3 items in your list. Make sure you hit return after each item. (Feel free to use a list from the aardvark content if you can’t think of your own. I used the list titled “Specifically, we need…” 30. Highlight the list title and choose Heading 3 from the Format menu on the Property Inspector (Make sure HTML is selected, not CSS). 31. Highlight the list items and click the Unordered List button on the Property Inspector. 32. The items appear as a bulleted list. 33. Now type in another List title and another list of items, or use the one within the content on the web page. (I used the one titled, “Please note the following rules”). 34. Highlight the title and select Heading 3 (Note: if using copied code, you may need to put the title on a separate line by hitting the enter button) 35. Highlight the rest of the items and click the Ordered List button on the Property inspector (next to the ordered list button). The items should now appear in a numbered list 36. Save your work. Get into the habit of saving your work regularly