Book Image

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery

By : DAVID KARLINS
Book Image

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery

By: DAVID KARLINS

Overview of this book

<p>Dreamweaver is the most powerful and industry-leading web design software that utilizes cutting edge web technologies such as HTML5, CSS3, and jQuery for web and mobile development. These technologies have radically reconfigured the process of designing Web content and function in the widest possible range of browsing environments ranging from desktops to mobile devices.For experienced Dreamweaver designers and for designers new to Dreamweaver, this book explains in detail how to take advantage of the new features available in the latest releases of Dreamweaver that add support for HTML5, CSS3, and jQuery. In addition to this, the book also contains detailed step-by-step directions for building mobile apps in Dreamweaver CS5.5.This book starts off by teaching you to create web pages in Dreamweaver using the latest technology and approaches — HTML5, CSS3, and JavaScript. It demonstrates how to create or customize pages with HTML5 layouts and add multimedia to these pages with HTML5 elements. Then you will learn to add various CSS3 effects to web pages. The book also covers different techniques of adding interactivity to web pages. The later chapters show how to optimize web pages with Dreamweaver for display in various browsing environments. You will also learn to build jQuery-based mobile apps from scratch in the later chapters. By the time you're finished, you'll have learned several techniques to use the latest features of Dreamweaver for web and mobile development.</p>
Table of Contents (13 chapters)
12
Index

Recipe: Creating and saving a 3-column HTML5 page

This recipe will walk you through the process of generating and saving a 3-column web page using the key HTML5 Layout elements. We will assume that you have created a Dreamweaver site (see the section named Creating a Dreamweaver site in this chapter).

  1. Select File | New to open the New Document dialog. Select Blank page on the left-hand category column. Choose HTML in the Page Type column. Moreover, select HTML5: 3 column fixed, <header> and <footer> in the Layout column.
  2. Note that HTML5 is now selected in the DocType pop up and Create New File from the Layout CSS pop up.
  3. Click on the Create button. The Save Style Sheet File As dialog appears.
  4. Click on the Save button and if prompted to replace an existing file, click on Replace. A generated HTML5 layout opens in Dreamweaver Document window.
  5. Click on the Inspect button in the Document toolbar to more easily detect and identify HTML5 Layout elements. With the Inspect button enabled, hover over different sections of the page, and look for HTML5 Layout elements such as <header>, <footer>, <aside>, <nav>, <article>, and <section> in the tag bar at the bottom of the Dreamweaver window, as shown in the following screenshot:
    Recipe: Creating and saving a 3-column HTML5 page
  6. Enter a page title in the Title box in the Document toolbar.
  7. Choose File | Save. Replace the default filename with your own filename—all in lowercase, no spaces, or special characters. Leave the HTML filename extension in tact. In order to work through the recipe in Chapter 2, save your file as: chapter1.html:
  8. Click on the Site Root button to ensure the file is correctly managed by Dreamweaver and then click on the Save button.

This is, of course, only the first step in creating a web page using the HTML5 layout elements in Dreamweaver. The next steps are to customize the content and look of your page. We will do that next!