11th Jan

Adobe dreamweaver cs6 tutorial in hindi free download.Dreamweaver Tutorial

  • ostarl
  • actresstheresemichaela@gmail.com

Looking for:

Adobe dreamweaver cs6 tutorial in hindi free download

Click here to Download

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

How did this help put together the site faster? For reading codes, code coloring and visual hints can be used for quickly editing and updating. Python Design Patterns. Javatpoint Services JavaTpoint offers too many high adobd services.❿
 
 

 

Dreamweaver Tutorial – Adobe dreamweaver cs6 tutorial in hindi free download

 

Although the screenshots for this series were taken on Windows, the instructions are identical for Mac OS X, apart from keyboard shortcuts and the labels on some buttons both are given. All you need to start working is to give your site a name, and tell Dreamweaver where you want to store the files on your local computer.

The Files panel in Dreamweaver now shows the new local root folder for your current site see Figure 8. The file list in the Files panel acts as a file manager, allowing you to copy paste, delete, move, and open files just as you would on a desktop.

You’ve now defined a local site folder for the Bayside Beat site. This is where you keep the working copies of web pages on your local computer. You’ve also specified the default folder to store images. This tells Dreamweaver to automatically copy images to that folder when you import images from outside the site root folder. A typical website contains a large number of files and folders. For ease of maintenance, it’s important to organize them logically.

Create separate, appropriately named folders for images, videos, style sheets, and external JavaScript files. Also bear the following points in mind:.

The images and color scheme for this project are stored online in a shared Creative Cloud Library. CC Libraries make your visual assets available to you everywhere, and are particularly useful when collaborating with other people. For example, one person might be responsible for creating visual assets, while you’re responsible for building the actual site. Check out the online documentation to learn more about using CC Libraries in Dreamweaver.

You’re going to create the Bayside Beat website from scratch. The sample files that you downloaded contain the text content in Microsoft Word and rich text format files, a JavaScript file, and copies of the project at each stage for you to compare against your own working files. Line 1 is the document type doctype declaration that tells the browser this is an HTML file.

HTML is a tag-based language. Tags are surrounded by angle brackets. Most tags come in pairs, with the closing tag indicated by a forward slash after the opening angle bracket. Most of the time, Dreamweaver creates all the necessary code for you as you work with its visual interface and dialog boxes.

But you need to be careful if you copy and paste code from elsewhere. Like human beings, an HTML page can have only one head and only one body. The file is now listed in the Files panel, and the tab at the top left of the Document window displays the filename. Tip: You can always get to the current website’s local site folder by clicking the Site Root button at the bottom of the Save As dialog box. This is what will be displayed in the browser tab or title bar.

It will also be picked up by search engines. Leaving this value unchanged is a common beginner mistake. It lets you verify that the changes you made have been implemented correctly.

Except in unusual circumstances, it will do exactly what you ask. If the insertion point is in the wrong place, your new code will be added there. To revert to splitting the Document window horizontally, select the same option again. The View menu also lets you choose which side Live View should be on.

Drag the bar separating Code and Live Views to adjust their relative sizes. Dreamweaver remembers your settings automatically. Now that you have finished defining your site, and created two blank web pages, you can start adding content to them. Next: Add and format text content. What you’ll need. Get Libraries. Get files. Get app. What you’re going to build.

Download the sample files from the link at the top of this page. The files are compressed as a single ZIP file. Extract the files to a convenient location, such as your Desktop. Browse to the desired location to save the files, and then click Extract. Inside the extracted files is a folder called bayside. It should contain nine subfolders, as shown in Figure 1.

Open the part7 folder, and drag index. The home page of the finished project looks like Figure 2. Resize the browser by dragging one of the sides inwards. When the viewport is narrower than px, the layout changes from two columns to a single column. The navigation bar is replaced by MENU against a black background.

The white text in the box over the image of the Golden Gate Bridge, has turned deep pink, and is now positioned below the image, as shown in Figure 3. Click MENU. The navigation menu slides down smoothly on a semi-transparent black background see Figure 4. Click MENU again. The navigation menu slides up and out of view. Set the Dreamweaver workspace. Set up a site in Dreamweaver. A typical Dreamweaver site has at least two parts: Local Folder: This is your working directory—usually a folder on your hard drive.

Dreamweaver refers to this folder as your local site root. Remote Folder: This is where you store your files on the computer that’s running your web server. The web server is often but not always the computer that makes your site publicly available on the web. Define the local site folder for the Bayside Beat site. After that, go back to Insert , click on the arrow next to Heading, and choose H1. For more information on heading tags, read this article. After that, you can also type in a title for your page.

In your real website, you would choose something descriptive with keywords and not just Dreamweaver Test Site as in the example. Alright, you have just created a page header! In case you are not familiar with it, CSS is the part that provides all the styling on a web page.

It allows you to define colors, the dimensions of elements, font types and sizes, and a whole lot more. We want to use the markup to spruce up our page title and also learn how to change CSS in Dreamweaver. Yet, that is a much less elegant option than what we will do, which is creating a dedicated file for all the CSS styling of the entire site. Leave the rest as is.

When you now select OK , a new file will appear at the top of your live view. You can view and edit it from there. The first thing you want to do is to change the font of your heading and also center it. For that, you first need to create a new CSS selector. A selector is the name of an element on your page that you can assign properties to, e. Mark your H1 heading in the DOM view on the lower right.

Then, above that, choose CSS Designer. To create a CSS selector, click on the line where it says S electors and then click on the plus symbol. This should automatically propose a selector named. Hit enter to create it. Quick note: For all those new to CSS, this selector means that you are targeting the element named h1 inside the element called.

That way, whatever you input as CSS applies to the written text only and not the header element overall. Now that you have a selector, you can assign properties to it. If you know your way around CSS, you can simply type markup into style. For the less experienced users, Dreamweaver helps you along the way. When you do, it will unlock a lot of additional options. With the new buttons, you can choose many CSS properties from the areas of layout, text, border, and background. The More button gives you options to input your own rules.

To change the font type, click on the Text option at the top alternatively, scroll down. In the upcoming options, hover over font-family and click on default font. This will give you a number of options for common fonts including their fallbacks in case the user browser is unable to show the primary font.

You may want to click on Manage Fonts at the bottom to get to this menu:. Here, you are able to choose free fonts from Adobe Fonts. Either search for them by name or use the many filter options on the left to narrow down your choices until you find something.

A click on any of the typefaces marks it for inclusion in Dreamweaver. Once you have done so, you can either use them directly or go to Custom Font Stacks to define your own fallback fonts. For now, simply hit Done and then click on default fonts again. If you click on your style. The text could still look better. The next task in our tutorial is to have Dreamweaver center it and make it all uppercase.

For that, the program also offers another feature called Quick Edit. To use it, go to the code view and right-click the part you want to edit. Here, choose Quick Edit at the top. This will open the CSS associated with this element below it. If there is nothing yet, you will find a New Rule button to create some. Either way, you can input additional properties here without having to search the entire style sheet file which can be very long.

In order to center the text and make it all caps, add the following code to it:. When typing, Dreamweaver will also make proposals for what you are trying to input, making it even easier. Note that the text has already changed in the live view. Now, press Esc to leave quick edit and head over to the style sheet. You will find that the new CSS has been added in the appropriate place.

Dreamweaver will then give you an explanation. With what you have learned so far, you can now build a rudimentary site. Just use the Insert function to add more elements, then style them with CSS.

To create an example page for this Dreamweaver tutorial, we have done the following:. Since this is a bit advanced and not everybody will know how to do what we have done in this tutorial within Dreamweaver, you can find the HTML and CSS below so you can reconstruct it for yourself. First the HTML:. We want to use the above as an example to show you the next steps. How did we do all of this?

Therefore, we already have the steps in my mind on how to create a proper web page. Secondly, we took advantage of a very useful feature that helps speed up the process: Browser preview. Dreamweaver allows you to view your web pages in real-time in a browser and even on mobile devices.

A click on the name of one of the web browsers will open your website project in it. You can also scan the QR code with your phone or tablet or type the displayed address into your browser to start the live preview on your device. Just be aware, that you need to input your Adobe ID and password for that. You should have that from signing up for Dreamweaver at the beginning of the tutorial.

The best part: Any changes you make in Dreamweaver will automatically show up in the browser at the same time you make them. How did this help put together the site faster? First of all, depending on the size of your screen, the display in the browser will probably be closer to the actual end product than what you see in Dreamweaver.

Secondly, checking the site in the browser allows you to use the developer tools to test changes. They are very similar to what you see in Dreamweaver but, if you are familiar with them, you can make changes quicker and just copy and paste the code into your style sheet.

In order to make your website work on all devices, you need to add so-called media queries. These are conditional CSS statements that tell browsers to apply styling only above or below certain screens sizes or on particular devices. That way, you can change the layout for smaller screens.

So far, you have only defined global styles. That means the styles that are applied to the entire site. Now you will learn how to add conditional styles for smaller screens. First, go to CSS Designer. Make sure that the file you want to add code to is selected under Sources. Hit the plus sign under media. You can define conditions for media queries e.

You can also add multiple conditions with the plus sign. With that, you are able to define custom CSS that will only apply to a certain max screen size. When you do, you can see the CSS code at the bottom. This visually represents the media query. Double-click it and the screen will automatically jump to that size. To correct the design for mobile, the first thing we need to do is make the page title smaller.

You can do this the same way you manipulated CSS before, only this time you have the media query activated while you do so. First of all — navigate to the element in your DOM view. From there create a new CSS selector for it. Set a smaller font size than it currently has and remove the padding from the parent element.

In the same way, you can change the CSS of all other elements on the page to make them all look right. You can use the same method to adjust the layout to tablets and other sizes.


 
 

Adobe Dreamweaver – Adobe dreamweaver cs6 tutorial in hindi free download

 
 
This eight-part tutorial series is designed to help you guide you through building a simple, yet elegant website in Dreamweaver It will. Create, code, and manage dynamic websites easily with a smart, simplified coding engine. Access code hints to quickly learn and edit HTML, CSS. Adobe Dreamweaver Tutorial with Introduction, Features, Advantages and Disadvantages, Installation, Pros and Cons, Designing a Website using Dreamweaver IDE. Download Learn Dreamweaver in Hindi & Eng with shortcuts apk for Android. Learn Dreamweaver CS6 in Hindi & Eng – 4 hrs video course. download adobe dreamweaver to start the tutorial. Step 1. Download and Install. You can use the Free Trial option to test out the software.