:: How To Use Dreamweaver CS6 To create A Website

To create a website We should have knowledge about HTML. Dreanweaver is a tool that is provide us to create a website easily- First of all installed dreamweaver CS6 in your system and then

 1)Click on "start" button (left side on bottom in your system)















 2)Click on "All programs"













 3)Click on "Dreamweaver CS6"
















 Your Dreamweaver CS6 window will be open














4)Click on "File" a new window will be open














5)Click on"New" a new window will be open then select "HTML" and then click "create"
(right side on bottom)















Your main Dreamweaver CS6 window will be open in which you will coding in HTML format















[[With HTML you can create your own Web site.This tutorial teaches you everything about HTML.
HTML is easy to learn - You will enjoy it.]]

HTML BASICS

1)HTML HOME-

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
2)HTML Headings
HTML headings are defined with the <h1> to <h6> tags.

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

3)HTML Paragraphs 

HTML paragraphs are defined with the <p> tag.

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

4)HTML Links

HTML links are defined with the <a> tag.
<a href="http://techlkyedu.blogspot.in/">This is a link</a>

Note: The link address is specified in the href attribute.
(You will learn about attributes in a later chapter of this tutorial)

5)HTML Images

HTML images are defined with the <img> tag.

<img src="techlkyedu.jpg" width="104" height="142">
(Note-you can choose width,height & image according to you)

Comments