Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Howard - Chapter 2 Notes</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <header>
- <nav>
- <ul>
- <li><a href="index.html">Home Page</a></li>
- <li><a href="howard-chapter2.html">Chapter 2</a></li>
- <li><a href="howard-projectmanagement.html">Project Mgmt</a></li>
- <li><a href="#">Link 4</a></li>
- <li><a href="howard-aboutme.html">About Me</a></li>
- </ul>
- </nav>
- </header>
- <div id="wrapper">
- <div class="left">
- <h1>Chapter 2 Notes</h1>
- </div>
- <div class="right">
- <h2>Creating Head Content and Setting Page Properties</h2>
- <p>Head content is completely unseen on the page, in the image and text aspecet. However, this content often controlls the appearance of the body as a whole. For example, the head content on this page links it to a stylesheet, which is used to give the page it's unique layout and color. This stylesheet can be used multiple times across pages.</p>
- <p>Some examples of head content can be the title of the page (words in the tab to replace the URL), the stylesheet linking, the style itself, or meta data - or page properties.</p>
- <h2>Creating, Importing, and Formatting Text</h2>
- <p>Text is obviously going to play a major part in the role of making any website. This is why it's important to make the text look good to the viewer. Text can also be imported through <code>.dwt</code> files, and this website is a great example - as nearly everything was already here (such as the formatting), and I am simply "filling in the blanks".</p>
- <p>Everything is important when it comes to making a website. Even the smiplest mistake can make everything seem a little bit less professional when totalled!</p>
- <hr>
- <h2>Definitions List</h2>
- <dl id="notes">
- <dt>Workspace</dt>
- <dd>The main area in Dreamweaver; almost everything.</dd>
- <dt>Document window</dt>
- <dd>The large area where sites are made; in the center.</dd>
- <dt>Menu bar</dt>
- <dd>Also called the <u>application bar</u>, the menu bar is above the document window and contains various useful commands.</dd>
- <dt>Insert panel</dt>
- <dd>Contains nine buttons; common, layout, forms, data, spry, jQuery m, inConetext, text, and favorites.</dd>
- <dt>Document toolbar</dt>
- <dd>Effectively acts like another menu bar, containing various useful commands; though more so focused on the website design than the use of the program.</dd>
- <dt>Related files toolbar</dt>
- <dd>Located below the document tabs and menu bar, this displays any related or linked files that affect the document (such as stylesheets).</dd>
- <dt>Property inspector</dt>
- <dd>Located at the bottom of the window, allowing one to change properties of a selected object with ease.</dd>
- <dt>Status bar</dt>
- <dd>Located below the document window, giving information such as file size and estimated page loading time.</dd>
- <dt>Tag selector</dt>
- <dd>Shows tags being currently used at an insertion point.</dd>
- <dt>Panel</dt>
- <dd>A tabbed window that displays related information and / or commands.</dd>
- <dt>Panel group</dt>
- <dd>Related panels that are grouped together by default or by the user.</dd>
- <dt>Hyperlinks</dt>
- <dd>Redirects that activate when the child element is clicked by the user (such as text or an image).</dd>
- <dt>Images</dt>
- <dd>Commonly used to add visual interest to a page.</dd>
- <dt>Banners</dt>
- <dd>Images that typically appear "hugging" the side of a page, cometimes containing links or company logos.</dd>
- <dt>Navigation bars</dt>
- <dd>Bars that contain links to serve as the main navigation of the site (such as the yellow bar at the top of this page!)</dd>
- <dt>Image map</dt>
- <dd>An image that has been divided into sections, serving as multiple relevant links.</dd>
- <dt>Rich media</dt>
- <dd>Visually attractive or otherwise engaging images, interactive elements, video, animation or sound.</dd>
- <dt>Wireframe</dt>
- <dd>Illustrations that represent the basic layout of a page.</dd>
- <dt>Parent / child pages</dt>
- <dd>The homepage (index.html) serves as a parent; every other page being the child.</dd>
- <dt>Local root folder</dt>
- <dd>A folder for the site with a descriptive name which contains all files used.</dd>
- <dt>Assets folder</dt>
- <dd>A folder located in the local root folder that contains all non-html files related to the site.</dd>
- <dt>Files panel</dt>
- <dd>The panel that appears by default when Dreamweaver is started. Used to select which project to open.</dd>
- </dl>
- </div>
- </div>
- <footer>
- <div class="left">
- © Jacob Howard 2017
- <h4>Contact: <a href="redacted">redacted</a></h4>
- </div>
- <div class="right">
- Style Guide:
- <ul>
- <li>Blue, White, Yellow, Gray</li>
- <li>Serif: Courier; Sans-serif: Arial</li>
- </ul>
- </div>
- </footer>
- </body>
- </html>
Advertisement