1 1.2 Getting Started …………………………

Total Page:16

File Type:pdf, Size:1020Kb

1 1.2 Getting Started ………………………… Table of Contents Introduction 1.1 Before You Begin …………………………................. 1 1.2 Getting Started …………………………................. 1 1.3 The Basic Toolbars & Palettes …………………………................. 2 Editing Your Web Page 2.1 Inserting & Manipulating Text …………………………................. 3 2.2 Changing Font Style & Text Color …………………………................. 3 2.3 Inserting & Manipulating Images …………………………................. 5 2.4 Changing an Image Pathname …………………………................. 6 2.5 Adding Links …………………………................. 6 2.6 Adding Tables …………………………................. 7 Conclusion Glossary …………………………................. 8 >>>Introduction Adobe GoLive is a feature-rich drag-and-drop web editor. It allows you to create and edit HTML documents using a WYSIWYG (what you see is what you get) interface. Adobe GoLive is similar to Mozilla Composer or Microsoft FrontPage, except that it provides an advanced interface for including and manipulating common HTML enhancements such as Java Applets, Flash animations, server-side scripts, and CSS. This tutorial is not designed to teach HTML or CSS. Because GoLive is an advanced web editor, knowledge of HTML and CSS are required to fully utilize the functions of the GoLive program. Familiarity with the web is also required. For a basic explanation of the terminology used in this tutorial, refer to the glossary. 1.1>BeforeYouBegin Before designing a website in GoLive, you will need to install the program on your local computer. Obtain a legal copy of the GoLive program and follow the installation instructions included with the program. On Microsoft Windows XP, a shortcut named “Adobe GoLive CS (ENG)” will be created within the “All Programs” category of the Start menu. To begin using GoLive, open the program by selecting the appropriate shortcut from the Start menu. 1.2>GettingStarted When the program opens, a dialog box will appear. You must select what type of web development you will be performing. This tutorial demonstrates single-user web development. Please refer to the official Adobe GoLive documentation for more information about collaboration or multi-user web development. 1. To begin, click New Site on the dialog box. The Site Wizard will appear. 2. Select Single User and click Next. 3. Select Blank Site and click Next. 4. Enter a meaningful name for your site in the Site Name textbox and click Next. 5. Click Finish to accept the default storage location for the new site. 1 1.3>TheBasicToolbars&Palettes Before creating your site, familiarize yourself with the basic windows, toolbars, and palettes of the program. Figure 1.4 from the Adobe GoLive documentation indicates the main program windows. Figure 1.3.1 The main program windows. >D. Inspector >A. Toolbar Inspector allows you to manipulate the properties The toolbar contains icons that represent the of a specific object or element. It contains the basic tasks you can perform within GoLive, such available properties and attributes of each object as opening folders, creating new pages, and or element, as well as color palettes, link tools, deleting pages. and more. When you click on a property or element within the work area, Inspector changes >B. Objectspalette to reflect the properties of that object or element. The objects palette contains objects that can be dragged and dropped into your web page, such as >E. Librarypalette tables, images, java applets, and more. The library palette contains preformatted, application-wide elements and objects as well as >C. Documentwindow elements and objects created specifically for your (WorkArea) web site. The document window—or the work area—is >F. Sitewindow where text, images, and other objects are The site window contains a list of all HTML files combined to form your web page. attached to your web site. When a new site is created, only the file index.html is attached to the site. 2 >>>EditingYourWebPage Double-click the index.html file in the site window. The work area will appear. Most of the web site creation process involves dragging and dropping objects from the objects palette onto the work area and manipulating the attributes and properties of objects, text, and images within Inspector. 2.1>Inserting&ManipulatingText To enter text into your web page, place the cursor on the work area and begin typing. You may select from the list of pre-defined HTML text types, including paragraph, various heading levels, and preformatted text. <p> contains basic paragraph body text. <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> contain heading elements of varying importance— one being most important and six being the least important. Depending on the heading you chose, the font size will be larger or smaller. <pre> Text within a <pre> block will be displayed exactly as you enter it into the work area. Use of <pre> is not recommended. 2.2>ChangingFontStyle&TextColor The use of the <font> HTML tag to define text attributes is deprecated. While most browsers still support the HTML <font> tag, GoLive uses CSS to format text. 1. In the work area, highlight the text you wish to change and click the Apply CSS button to format the text attributes. 2. The text types contained within your document appear in a new window. Place a checkmark below the text type you wish to format. Figure 2.2.1 Selecting a text type to format 3 3. Another window will open. Enter a meaningful name for the class style you are creating. Class names must be unique across your web site. Figure 2.2.2 Entering a class style name 4. Click OK to continue. 5. Another window will open. The tabs highlighted in the figure below allow you to manipulate the font style, text color, text alignment, and more. Figure 2.2.3 Text manipulation tabs 4 2.3>Inserting&ManipulatingImages 1. Drag the image icon from the Objects Palette onto the work area. The image icon will appear on the work area. 2. Right-click the image icon on the work area and select Source Link and then Browse Link… Figure 2.3.1 Selecting and image source 3. Select a source for the image from your local computer. The image you selected will appear in the work area. IMPORTANT! Filenames are case-sensitive and pathnames must be replicated when you upload your web page and images to the Internet. If your images do not appear when you upload your web page, check your filename spelling and your pathname. Refer to section 2.4 to change an image’s pathname. 5 2.4>ChanginganImagePathname 1. Left-click once on the image you wish to change. 2. Within Inspector, edit the Source textbox to reflect a web-appropriate path. Figure 2.4.1 Changing an image pathname 2.5>AddingLinks 1. Using the mouse, highlight the text you 3. Enter the URL of the link into the first wish viewers to click to follow a link. textbox. You may optionally enter a title for the link. 2. Click the Create link button within Inspector Figure 2.5.2 Entering a URL for a text link Figure 2.5.1 Creating a link In addition to regular links, GoLive allows you to insert anchored links. Refer to the official Adobe documentation for more information. 6 2.6>AddingTables 1. Using the mouse, drag the table icon from the Objects Palette onto the work area. 2. A generic table with three rows and three columns will appear on the work area. 3. Using Inspector, you can adjust the rows, columns, width, height, border, padding, and other properties of the table. Figure 2.6.1 Inspector table properties >>>Conclusion Adobe GoLive provides features for web developers of all skill levels—from novice users to advanced users. GoLive has many features not outlined in this tutorial. Please refer to the official Adobe documentation for more information on the more advanced features of the program. 7 >>>Glossary Client (Web Browser) A client—more commonly known as a web browser—allows a user to request web pages from a web server on the Internet. If the page contains any server-side scripting, the web server processes the script before returning the web page to the client. Otherwise, the web page is returned immediately. The client receives the raw data from the web server in HTML format and renders it for presentation on a computer monitor after applying any CSS the page may contain. Some common web browsers include Microsoft Internet Explorer, Netscape Navigator, Mozilla Firefox, and the text-only browser Lynx. CSS CSS (Cascading Style Sheets) are used to extend the functionality of HTML and allow web designers to influence the presentation of web texts. CSS allows the structure of a web document—the HTML—to be separated from the presentation of that structure—the CSS. CSS is slightly more complicated to create than HTML, but Adobe GoLive makes the creation process much easier. Though CSS files are usually stored as separate files with the file extension .css , GoLive places all style in the <head> section of each HTML file. FTP FTP (File Transfer Protocol) is the procedure used by computers on the Internet to transmit files of any type or size from one computer to another. Most web servers also run an FTP server that allows FTP clients to connect to the server and upload web pages or other data. Because HTTP does not support file uploads without extensive server-side scripting or special software, FTP is needed to allow web designers to publish their web pages to the web. HTML HTML (Hyper-Text Markup Language) is used in the creation of documents for the World Wide Web. Its specification is somewhat limited because of the need for portability and extendibility across a wide variety of computer systems with varying hardware and software. HTML provides a basic functionality for controlling the design and presentation of a web page document and is stored as a plaintext file with the file extension .html or .htm .
Recommended publications
  • DISSERTATION APPROVAL the Abstract And
    DISSERTATION APPROVAL The abstract and dissertation of Emerson Murphy-Hill for the Doctor of Philoso- phy in Computer Science were presented on February 26, 2009, and accepted by the dissertation committee and the doctoral program. COMMITTEE APPROVALS: Andrew P. Black, Chair Stephane´ Ducasse Mark Jones Susan Palmiter Suresh Singh Douglas Hall Representative of the Office of Graduate Studies DOCTORAL PROGRAM APPROVAL: Wu-chi Feng, Director Computer Science Ph.D. Program ABSTRACT An abstract of the dissertation of Emerson Murphy-Hill for the Doctor of Philoso- phy in Computer Science presented February 26, 2009. Title: Programmer Friendly Refactoring Tools Tools that perform semi-automated refactoring are currently under-utilized by programmers. If more programmers adopted refactoring tools, software projects could make enormous productivity gains. However, as more advanced refactor- ing tools are designed, a great chasm widens between how the tools must be used and how programmers want to use them. This dissertation begins to bridge this chasm by exposing usability guidelines to direct the design of the next generation of programmer-friendly refactoring tools, so that refactoring tools fit the way program- mers behave, not vice-versa. PROGRAMMER FRIENDLY REFACTORING TOOLS by EMERSON MURPHY-HILL A dissertation submitted in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY in COMPUTER SCIENCE Portland State University 2009 To Tetey Acknowledgements This research could not have been accomplished without the help of countless others. First and foremost, thanks to my advisor, Andrew P. Black, for always providing en- lightening guidance and advice. Thanks to the members of my thesis committee, each of whom contributed to this work: Stephane´ Ducasse, Doug Hall, Mark Jones, Susan Palmiter, and Suresh Singh.
    [Show full text]
  • Adobe Golive CS2 Fans Say Adobe Golive Is Better Than Dreamweaver, Yet Few Web Designers Use It
    Adobe GoLive CS2 Fans say Adobe GoLive is better than Dreamweaver, yet few web designers use it. What does the CS2 version have that can challenge this hegemony? the assisted browsers ac web designers have had a love-hate relationship with faster and are usable with little effort by GoLive for a long time. Many have chosen to hate it from and screenreaders disabled web surfers use. - the anorexic afar, never having tried it Dreamweaver, despite its GoLive CS 2 is a godsend for anyone frustrated by in Windows-eque interface and inferior feature set, has somehow CSS positioning tools and microscopic range of templates managed to grab all the thunder in the market. Others have GoLive CS and Dreamweaver. In typical Mac fashion, you can just chosen to hate it gradually, watching as Adobe has slowly drag sets of CSS layouts straight into your webpage and GoLive than stamped its own interface and ideas on the once promising, will configure stylesheets and coding appropriately. Better beautiful, innovative and Mac-esque GoLive CyberStudio. But there templates, this allows you to combine CSS layouts to create your are a happy few, a loyal band of GoLive users who have stuck own custom layout without having to know coding. with it and loved it since those heady OS 9 days when it was But does GoLive actually display the page correctly in its easily the best package available on any platform. Now the latest traditional editing mode, a deficiency that made GoLive CS hard - - and definitely the greatest GoLive is out and it looks set to to use with true CSS layouts? No.
    [Show full text]
  • Gerry E. Mayer 604.314.7541 [email protected] PROFESSIONAL PROFILE
    gerry e. mayer 604.314.7541 [email protected] www.gemdigitalmedia.com PROFESSIONAL PROFILE Interactive and web design professional with more than 10 years practical experience and 6 as a post secondary instructor, in web design, web development, digital imaging, Flash development, video and motion graphics, and animation. Experience also includes managing, the development, preparation and facilitation of courses in Professional Development, and Basic English Essay Writing. Strong focus on maintaining creative excellence and creating positive relationships for both internal and external clients from within the public, private and educational sectors. PROFESSIONAL EXPERIENCE 2011-current Surrey Connect – Surrey School District – Surrey, BC Web Communication Specialist ▪ Support and train teachers in the use of Blackboard Learn 9.1 LMS ▪ Assist in administering Blackboard Learn 9.1 ▪ Maintain and support Blackboard LMS course shells ▪ Develop web solutions for Surrey Connect ▪ Create and deliver Blackboard training workshops ▪ Support and development of Social Media solutions - surreyconnectnews.com ▪ Support for digital media solutions ▪ Create and maintain Google analytics, AdWords and Facebook advertising ▪ Administer and support Lynda.com ▪ Support Tell me more - language LMS 2008-2011 Douglas College – New Westminster, BC Web Designer § Responsible for development and maintenance of corporate website using CMS – Active 9.0 (formerly Ironpoint) § Developed and implemented new site Design including Information architecture, prototyping,
    [Show full text]
  • Photoshop and Imageready with Golive and Dreamweaver
    WEB 1 PHOTOSHOP AND IMAGEREADY WITH GOLIVE AND DREAMWEAVER IN THIS CHAPTER Beyond ImageReady: GoLive and Dreamweaver 2 Exporting Images from Photoshop and ImageReady for HTML Editors 2 Importing Images into GoLive 7 Importing Images into Dreamweaver 14 2 Web 1: Photoshop and ImageReady with GoLive and Dre a m w e a v e r BEYOND IMAGEREADY: GOLIVE 1 AND DREAMWEAVER For more detailed information and Adobe GoLive and Macromedia Dreamweaver are con- to download a working demo of sidered “what you see is what you get” (WYSIWYG) applica- Adobe GoLive and Macromedia tions. They enable you to create more complex Web sites Dreamweaver, go to their Web than you can with only ImageReady and give you the flexibil- sites at www.adobe.com and ity to create a layout on a grid—just click and drag your www.macromedia.com. visual elements around on the page. With this click-and-drag approach, beginners never have to look at a piece of HTML code to create an attractive Web page. You can also import other media elements, such as Flash, Shockwave, and QuickTime movies, as well as ImageReady slice elements and Photoshop or ImageReady images and animations. ImageReady is a great start to laying out a page design, how- ever, and you can easily import slice elements from it into either GoLive or Dreamweaver. A quick overview of using Photoshop and ImageReady images or animations in these applications is covered later in this chapter. What’s more important to note is that GoLive and Dreamweaver offer much more in the way of site management tools.
    [Show full text]
  • Guatewireless.Org
    12/5/2015 Top 50 Herramientas Propietarias y sus Alternativas Opensource ← Guatewireless.org Guatewireless.org Acerca del Sitio Contactame Glosario Ayuda e Ideas para el administrador de sistemas Linux, Bitcoins, Redes Popularity Contest Plugin para WordPress Tecnologia Software Top 50 Herramientas Propietarias y sus Alternativas Opensource « Amarok: Modulo Python Kdecore El ciclo de Ubuntu 9.04 Jaunty Jackalope inicia » Top 50 Herramientas Propietarias y sus Alternativas Opensource 4 10 Nov 2008 | Software Tags: internet explorer · por supuesto · sistemas operativos de windows · software propietario Me gusta 0 Tweet 8 Desde que tengo memoria estoy acostumbrado a utilizar herramientas de compañias como Adobe, Microsoft, Symantec, etc. El hecho es que estas herramientas aunque sean Buscar muy buenas tambien son propietarias, y a simple vista uno puede pensar que la ventaja de las herramientas de codigo libre es su precio casi nulo, lo cual es tan solo un minimo de las grandes ventajas que tenemos al utilizar software libre. Al contrario de la experiencia de que el software propietario viene con los lí​mites que Recomendacion del Editor mantiene la experiencia del usuario restringida. › Si usted cree que su herramienta con la cual trabaja actualmente es lo unico que existe los Coleccion de claves router Turbonett Claro cincuenta programas propietarios a continuacion considerados como de facto en el › mercado se muestran junto con sus alternativas de código abierto. APN TIGO – GPRS MMS WAP Internet 3G El caso es que usted evalue los pros y contras de su herramienta usual y vea que el mundo EDGE Manual de Configuracion del floss le brinda alternativas libres con las cuales puede hacer la misma tarea de la forma › usual o incluso mejor.
    [Show full text]
  • 1Lesson 1: Markup Language and Site Development Essentials
    1Lesson 1: Markup Language and Site Development Essentials Objectives By the end of this lesson, you will be able to: 2.1.1: Relate the history of markup languages to current techniques and technologies, including Standard Generalized Markup Language (SGML), previous versions of Hypertext Markup Language (HTML). 2.1.2: Identify the format and various versions of HTML, including HTML 4.01, Extensible HTML (XHTML), HTML5. 2.1.8: Explain the importance of consistently developing to a single W3C standard (e.g., HTML5). 2.6.1: Describe the functionality of XML. 2.7.1: Obtain input from stakeholders about acceptable technologies and color combinations. 2.7.2: Create an initial Web site diagram (i.e., a story board or prototype), and translate it into a site map. 2.7.3: Verify compliance with government and industry accessibility standards, including W3C Web Accessibility Initiative (WAI), U.S. Government Section 508, Americans with Disabilities Act (ADA). 2.7.4: Validate Web page design according to technical and audience standards adopted by employers. 2.7.5: Verify Web site usability, viewability and browser compatibility. 2.12.1: Test and validate Web documents. 2.12.3: Test Web pages in multiple browsers. 2.13.1: Work as a team member to develop pages and sites. 1-2 Site Development Associate 2.13.2: Collaborate with technical (e.g., IT) and non-technical (e.g., marketing) members of the organization to ensure sites meet requirements. 2.13.3: Determine information and audience requirements for a site, including stakeholders such as customers, employees, shareholders, suppliers. 2.13.4: Document a Web site plan.
    [Show full text]
  • Dreamweaver 1
    Using Dreamweaver CS6 Overview Using Dreamweaver CS6 1 – Overview About the Web The worldwide web has become one of the most common uses for the Internet. It allows people to access a wide range of documents and other media from all over the world in a simple to use format. Designing content for the web is not so straight forward though. Many people learning to create websites are used to using word processors such as Microsoft Word, and try to create web pages the same way they’d create a Word document. Unfortunately this doesn’t usually work too well since the online world and print world are very different. Sure, you can make a web page the same way you’d make a word processed document, but it often won’t work too well and will be vulnerable to a variety of problems. The first thing a new web developer needs to do is to change their thinking and gain an understanding of how the web works. You need to remember that some things that will work well in a web page, won’t work well in a printed document and vice-versa. The Web began in the 80s when Tim Berners Lee (pictured) wanted to create a system to facilitate the sharing of information among researchers. The first web site was created in 1991 and in 1994, the World Wide Web Consortium1 (W3C) was established to create standards and improve the quality of the web. It was around that time that a new web browser called Netscape Navigator became available, helping to popularise the web due to its ease of use.
    [Show full text]
  • Introduction, Internet and Web Basics, XHTML and HTML
    Introduction, Internet and Web Basics, XHTML and HTML http://localhost:8080/cocoon/projects/cscie12/slides/20070130/handout.html Introduction, Internet and Web Basics, XHTML and HTML http://localhost:8080/cocoon/projects/cscie12/slides/20070130/handout.html Table of Contents | All Slides | Link List | Examples | CSCI E-12 CSCI E-12, Fundamentals of Web Site Development Introduction, Internet and Web Basics The Course XHTML and HTML Course Syllabus | Course Schedule I. Content for the Web January 30, 2007 A. Markup (XHTML, HTML) B. Style (CSS) Harvard University C. Building a Site Division of Continuing Education D. Images and Media Extension School II. "Everything" else Course Web Site: http://cscie12.dce.harvard.edu/ A. Javascript and AJAX B. Hypertext Transfer Protocol (HTTP) Copyright 1998-2007 David P. Heitmeyer C. The Apache HTTP Server D. Keeping a site healthy Instructor email: [email protected] E. Dynamic Sites Course staff email: [email protected] The Course Staff David Heitmeyer Teaching Fellows Mike Cynn Rei Diaz Evan Elias Sonal Patel Susan Smith 1 of 39 2/7/2007 4:26 PM 2 of 39 2/7/2007 4:26 PM Introduction, Internet and Web Basics, XHTML and HTML http://localhost:8080/cocoon/projects/cscie12/slides/20070130/handout.html Introduction, Internet and Web Basics, XHTML and HTML http://localhost:8080/cocoon/projects/cscie12/slides/20070130/handout.html Texts What the Course "Is" and "Is Not" In addition to the texts, there will be online readings assigned and online references cited. Is Is Not Required texts: Freeman, Elisabeth and Eric Freeman. 2005. Head First HTML with CSS & XHTML.
    [Show full text]
  • Theme JEE and .Net OMA Implementations (Part 1)
    Application Servers Session 4 – Main Theme JEE and .Net OMA Implementations (Part 1) Dr. Jean-Claude Franchitti 1 Icons / Metaphors Information Common Realization Knowledge/Competency Pattern Governance Alignment Solution Approach 22 Web Application Servers Architectures (Evolution) Traditional client-server technology CGI frameworks Page-based extended HTML environments Distributed object computing platforms Java-Based Object Management Architectures (OMAs) Component-based computing environments Web Services platforms Next generation application servers (reflective, multimedia- and agent enabled, MDA-compliant, etc.) 3 Web Application Servers Architectures (Page-Based Extended HTML Environments Details) Application Servers for Enhanced HTML (traditional) a.k.a., Page-Based Application Servers Tag-Oriented (e.g., Macromedia ColdFusion 5.0 Server) Script Oriented (e.g., Microsoft IIS with ASP, PHP) Mostly Used to Support Standalone Web Applications Typically less expensive than standalone and IDE-based servers HTML-based development New Generation Page-Based Script-Oriented App. Servers First Generation Extensions (e.g., Microsoft IIS with COM+/ASP) Servlet/JSP Environments XSP Environment Can now be used as front-end to enterprise applications Hybrid development environments 4 Web Application Servers Architectures (Beyond Page-Based Extended HTML Environments Details) Distributed Object Computing Platforms Provide an infrastructure for distributed communications enabling Still need to merge traditional web-oriented
    [Show full text]
  • Vysoke´Ucˇenítechnicke´V Brneˇ
    VYSOKE´ UCˇ ENI´ TECHNICKE´ V BRNEˇ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMACˇ NI´CH TECHNOLOGII´ U´ STAV INFORMACˇ NI´CH SYSTE´ MU˚ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS MODULA´ RNI´ GENERA´TOR WEBOVY´ CH STRA´ NEK BAKALA´ Rˇ SKA´ PRA´ CE BACHELOR’S THESIS AUTOR PRA´ CE JAN VLASA´ K AUTHOR BRNO 2011 VYSOKE´ UCˇ ENI´ TECHNICKE´ V BRNEˇ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMACˇ NI´CH TECHNOLOGII´ U´ STAV INFORMACˇ NI´CH SYSTE´ MU˚ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF INFORMATION SYSTEMS MODULA´ RNI´ GENERA´TOR WEBOVY´ CH STRA´ NEK MODULAR GENERATOR OF WEB PAGES BAKALA´ Rˇ SKA´ PRA´ CE BACHELOR’S THESIS AUTOR PRA´ CE JAN VLASA´ K AUTHOR VEDOUCI´ PRA´ CE Ing. PETER SOLA´ R SUPERVISOR BRNO 2011 Abstrakt Tato práce popisuje souèasné zpùsoby vytváření webových stránek a nástroje potøebné k je- jich vytvoření. Práce také implementuje nový nástroj | editor webových stránek s vizuál- ním návrháøem, který je na rozdíl od ostatních editorù zaměřen na generování složitějších webových komponent. Abstract This thesis describes today's techniques for creating web pages and tools needed for their creation. Thesis also implements a new tool | webpage editor with visual designer, which can in contrast to other editors generate more complex web components. Klíčová slova WYSIWYG, vizuální návrháøe, webové editory, web, webová služba, HTML, PHP, ASP.NET Keywords WYSIWYG, visual designers, web editors, web, web-service, HTML, PHP, ASP.NET Citace Jan Vlasák: Modulární generátor webových stránek, bakaláøská práce, Brno, FIT VUT v Brně, 2011 Modulární generátor webových stránek Prohlášení Prohla¹uji, že jsem tuto bakaláøskou práci vypracoval samostatně pod vedením Ing.
    [Show full text]
  • Golive Overview
    Adobe GoLive Website Development Application Professional, standards-based Web and mobile authoring An Overview of Adobe GoLive GoLive provides easy-to-use site building tools, editors, and powerful site management features to help you develop professional-quality Web sites. Fully integrated in with Adobe System's comprehensive set of integrated Web design tools, Photoshop, Illustrator, and LiveMotion Smart Objects. Design and develop professional Web sites Can rapidly develop, architect, and manage dynamic content for the Web and wireless devices everywhere. Adobe GoLive unifies information architecture, dynamic content authoring, site and file management to deliver optimized rich media content. Develop information architecture diagrams Work within GoLive to design your site and develop an architectural diagram that you can circulate for comment and approval. Site information diagrams Diagram tools let you lay out the structure of your site and show relationships and links between pages. Diagrams for approval Publish diagrams as a PDF file or in SVG format. If in PDF, your reviewers can use Acrobat to mark up and comment directly in your file and send it back to you with their approval. Site maps and live pages From diagrammed sites, can quickly generate a site map (using the TOC feature) and turn the diagram into live pages for your site. Visually design and author pages GoLive visual page design tools make it easy to produce pages without working with code. At the same time, GoLive integrates code editing tools so you can work both visually in the page layout and in the source code simultaneously. Layout grid for table-based designs You drag & drop text boxes, images, and other objects onto the layout grid to develop a page.
    [Show full text]
  • Collection Titles
    Direct e-Learning Solutions for Today’s Careers CBT Direct’s IT Pro Collection Available: 7476 Collection Titles Coming Soon: 557 .NET 2.0 for Delphi Programmers Architecture Tivoli OMEGAMON XE for DB2 Performance .NET 3.5 CD Audio Player: Create a CD Audio 3D Computer Graphics: A Mathematical Expert on z/OS Player in .NET 3.5 Using WPF and DirectSound Introduction with OpenGL A Field Guide to Digital Color .NET Development for Java Programmers "3D for the Web: Interactive 3D animation using A First Look at Solution Installation for .NET Development Security Solutions 3ds max; Flash and Director " Autonomic Computing .NET Domain-Driven Design with C#: Problem - 3D Game Programming All in One A Guide to Global E-Commerce: Issues to Design - Solution 3D Graphics ReferencePoint Suite Consider When Selling Internationally Over the .NET E-Commerce Programming 3D Modeling in AutoCAD: Creating and Using Internet .NET Enterprise Development in C#: From 3D Models in AutoCAD 2000; 2000i; 2002; A Guide to MATLAB Object-Oriented Design to Deployment Second Edition Programming .NET Enterprise Development in VB.NET: From 3D Programming for Windows: Three- A Guide to Software Configuration Design to Deployment Dimensional Graphics Programming for the Management .NET for Visual FoxPro Developers Windows Presentation Foundation A Guide to Software Package Evaluation and .NET Framework ReferencePoint Suite 3ds max 5 Bible Selection .NET Framework Solutions: In Search of the 3ds max 5 For Dummies A Guide to the Project Management Body of Lost Win32 API
    [Show full text]