Seamonkey Composer: Creating Web Pages

Total Page:16

File Type:pdf, Size:1020Kb

Seamonkey Composer: Creating Web Pages v.1101 SeaMonkey Composer: Creating Web Pages There are many ways to create and modify Web pages to be published on the Web. You can use any text editor such as Notepad to directly enter or modify the language of Web pages which is HTML, hypertext markup language. The disadvantage of this approach is that you must learn HTML and it is easy to make mistakes. With a Web page editor program like SeaMonkey Composer, you can create and modify Web pages in a manner similar to a word processor like Microsoft Word. You can actually use Word to create Web pages but the HTML that it creates is complicated and you can’t do as many things as you can do with many Web page editors. SeaMonkey Composer is easy to use, creates fairly good HTML, and is free, unlike some more professional products like Microsoft FrontPage or Macromedia Dreamweaver. If you wish a copy of SeaMonkey for your own computer, you can download it from http://www.seamonkey-project.org/. Objective 1 Explore the SeaMonkey Composer Window 1.1 Start SeaMonkey. If the SeaMonkey icon is on your desk top you can start SeaMonkey by opening an icon similar to the one shown to the left. You can also start it from the Start button. On the lab computers it is located under Networking Applications or Development Tools. This will start the SeaMonkey Navigator browser and the Navigator window will appear as shown in Figure 1B.1. Click the Composer Icon located on the lower left of the window. The Composer window will open. Composer: Figure 1B.1 SeaMonkey Tutorial | Web Page Design 1 1.2 Take a moment to study the main parts of the SeaMonkey Composer window as shown in Figure 1B.2. Menu Bar Composition Toolbar Format Toolbar Page Area Edit mode Toolbar Figure 1B.2 Objective 2 Entering Text 2.1 We are ready to build our first page. Type the following into the page area where is the Enter key, substituting your name for FirstName and LastName. Alex’s Home Page by Firstname Lastname Welcome to my home page. My name is Alex. As you can see from my picture above, I am a handsome lion. You may not know it by looking at me but I am a movie star. You have been typing into Composer’s Normal edit mode. You can see which mode you are using by looking at the tabs at the bottom of the window. The current mode tab will appear to be in the foreground and will not be darkened. 2 Web Page Design | SeaMonkey Tutorial 2.2 Typed text will word wrap when it gets to the right border of the window. By hitting the Enter key, you insert a break in the text forcing a new line. Click on the Source tab at the bottom of the window. You can now see the HTML, Hyper-Text Markup Language that is actually used to build the page. HTML consists of tags which appear in angle brackets (or less-than and greater-than symbols). Some tags need an end tag so you will see a slash (/) to indicate an end tag. Notice that the HTML starts with <html> and ends with </html>. There is a <head> and a </head> and in between is HTML file header information. There is also a <body> and a </body> and in between you will see most of what makes up the pages you will be creating. You can see the text you typed and the <br> tag where you inserted a break in the text. 2.3 Click on the Normal mode tab. Click the Save button . A Page Title dialog box will appear. Enter Alex’s Home Page as shown in Figure 1B.3. Figure 1B.3 Click OK. Composer displays the Save Page As dialog box. Use the displayed folders to navigate to CpSc120L\MyDoc. On the toolbar click New folder, enter SeaMonkey, and press Enter. Click Open to open the SeaMonkey folder. Click in the File name box. If necessary, select or delete the existing text and then type index. Click Save. Your page has been saved in the file index.html. Most Web servers will use index.html or index.htm if you do not specify an actual file when you specify a Web address. SeaMonkey Tutorial | Web Page Design 3 Objective 3 Formatting and Aligning Text 3.1 We have not yet specified the font face that our Web page is to use which means that it will appear in the default font of the browser, whichever one a visitor to the page might be using. If the visitor is using Window’s Internet Explorer that means the Times New Roman font face will be used unless the visitor has changed the browser defaults. Online text looks better in a sans-serif font of which Times New Roman is not. Serif fonts have extra indicators at the end of some of the strokes in the font such as the one at the bottom of this T. Compare that to an Arial T. Press Ctrl+A to select all. On the menu bar, click Format, Font, and then Helvetica, Arial. This means that if the browser finds a font named Helvetica it will use it, otherwise it will use Arial. If it doesn’t find either, it will try to use some other sans-serif font, but this set should cover most browsers. 3.2 Click in the first line of text. This line is the header for the page. The header normally appears larger then the rest of the text and is centered. We could change the actual font size but the header is normally done in a different manner. On the left of the formatting tool bar, click on the arrow in the Paragraph Format box . Click on the Heading 1 entry. The first line now appears larger. 3.3 Toward the end of the formatting tool bar are some alignment buttons: Left Center Right Justify (Newspaper paragraph) Click Right, Left, and finally Center to see how they align the heading. Leave the heading centered. 3.4 We need to leave some space for Alex’s picture. Click after the word Page at the end of the heading and press Enter twice. 4 Web Page Design | SeaMonkey Tutorial 3.5 We would like the line with our name to be centered, bold, italicized, and a little larger then normal font size. Triple click in the line with your name. This will select the entire line. On the formatting toolbar, click the Center button , click the Larger Font button , click the Bold button , and then click the Italic button . Click after your last name and then hit Enter. This offsets the name line from the rest of the text. 3.6 Another way to separate text is by making it a paragraph. Click and drag from the word Welcome through the period at the end of the text after the word star. On the left of the formatting tool bar, click on the arrow in the Paragraph Format box . Click on the Paragraph entry. 3.7 Sometimes we wish our text to be indented from the left edge of the window. On the formatting toolbar, click on the Indent text button . The text is now moved to the right. Click the Indent text button again. The text is now further to the right. Click the Outdent text button . The text is moved back one indention. Press Ctrl+S or the Save button to save your page. SeaMonkey Tutorial | Web Page Design 5 Objective 4 Bulleted and Numbered Lists 4.1 Sometimes we wish lists of items either with bullets or numbers preceding each item. Press Ctrl+End so that the insertion point is after the last paragraph. On the formatting toolbar, click the Bulleted List button . Enter the following. I graduated from Clemson University. Not long ago, I stared in the movie Madagascar. After entering the text, click the Bulleted List button again to end the list. You should have a bulleted list with two items. You may notice that the font changed back to the default because we added to the end of the page. We will fix that later. 4.2 This time we will create a numbered list but we will do it by entering the text first. Press Ctrl+End so that the insertion point is after the last paragraph. Enter the following. My favorite pastimes are Acting Partying with my friends Eating Sleeping Click and drag from the word Acting through the word Sleeping to select the text in our list. Click the Numbered List button . You should now have a numbered list with four items. 4.3 We need to clean up a little now. The line starting with “My favorite” is not indented. Click in the line starting with “My favorite”. On the formatting toolbar, click on the Indent text button. We need to fix our fonts. Press Ctrl+A to select all. On the menu bar, click Format, Font, and then Helvetica, Arial. Press Ctrl+S or the Save button to save the page. 6 Web Page Design | SeaMonkey Tutorial Objective 5 Inserting Images 5.1 We now wish to insert that picture of Alex which we wish to take from our sample page. We must first save the image. On your task bar, make the window containing the sample page active. Right click on the picture of Alex to get the context menu. On the menu, click on Save Picture As or Save Image As.
Recommended publications
  • Maximum Internet Security: a Hackers Guide - Networking - Intrusion Detection
    - Maximum Internet Security: A Hackers Guide - Networking - Intrusion Detection Exact Phrase All Words Search Tips Maximum Internet Security: A Hackers Guide Author: Publishing Sams Web Price: $49.99 US Publisher: Sams Featured Author ISBN: 1575212684 Benoît Marchal Publication Date: 6/25/97 Pages: 928 Benoît Marchal Table of Contents runs Pineapplesoft, a Save to MyInformIT consulting company that specializes in Internet applications — Now more than ever, it is imperative that users be able to protect their system particularly e-commerce, from hackers trashing their Web sites or stealing information. Written by a XML, and Java. In 1997, reformed hacker, this comprehensive resource identifies security holes in Ben co-founded the common computer and network systems, allowing system administrators to XML/EDI Group, a think discover faults inherent within their network- and work toward a solution to tank that promotes the use those problems. of XML in e-commerce applications. Table of Contents I Setting the Stage 1 -Why Did I Write This Book? 2 -How This Book Will Help You Featured Book 3 -Hackers and Crackers Sams Teach 4 -Just Who Can Be Hacked, Anyway? Yourself Shell II Understanding the Terrain Programming in 5 -Is Security a Futile Endeavor? 24 Hours 6 -A Brief Primer on TCP/IP 7 -Birth of a Network: The Internet Take control of your 8 -Internet Warfare systems by harnessing the power of the shell. III Tools 9 -Scanners 10 -Password Crackers 11 -Trojans 12 -Sniffers 13 -Techniques to Hide One's Identity 14 -Destructive Devices IV Platforms
    [Show full text]
  • Error in Schema Vs Code
    Error In Schema Vs Code Anesthetized Geoff screak some Leo and filmsets his arquebusiers so actinally! Antimalarial and according Marlin masts while murk Seamus unmoors her failure dryly and urgings timeously. Gonorrheic and laurelled Garfield never catalyse his asps! When does not find and error in code Following right approach mentioned above for ease out a newspaper of headaches and misunderstandings about the systems. Create a secure password using our generator tool. Check out our get started guides for new users. Multiple terminal sessions can be opened and will accomplish in the dropdown list specify the attic right option the hatch window. With rank above configuration we connect now attend our schema. Copy the comment line pump and paste it pick your spec file. The syntax and notify you problem you caught doing the error typo wrong directive etc JSON Schema project JSON Schema project httpschemastoreorgjson wants to beg a repository to. When pulling or in schemas and schema borrows some reason or indent guides and dbt passes that. Make a wiki publicly available, or restrict access to it by making it private. Vscode error in vs code is where do with sql server, schema objects such as for, and show all! Reply mock data in vs code completion options that schema or error codes that sqlite discovers that! At all editors including no longer used in the title, vs code in. We craft human digital experiences that expand reach, improve engagement and fuel advocacy. Personal portfolio and assorted projects of Joshua Tzucker. Cloud Code automatically pulls the schema of all installed CRDs.
    [Show full text]
  • Microsoft Frontpage Course Design 2000-2001
    Microsoft FrontPage Course Design 2000-2001 Course Information Organization: EASTERN ARIZONA COLLEGE Division: General Education Course Number: CMP Title: Microsoft FrontPage Credits: 1 Developed by: Dr. Barbara Ganz Lecture/Lab Ratio: 1 Lec/1 Lab Transfer Status: Non-Transferable to ASU, UofA and NAU Extended Registration Class: Not an extended registration course CIP Code: 52.0408 Awareness Course: No Intensive Writing Course: No Prerequisites: 1. None Educational Value: This class is designed for Intermediate Computer and Internet users who desire to learn the basic of web site development. Goals: 1. To introduce students to the uses of Microsoft FrontPage. Description: An introduction to web page development using Microsoft FrontPage in a non-programming approach. Includes hyperlinks, graphic, frames, tables, ftp. Emphasis on good website design strategies. Experience using the Internet and basic computers skills are recommended. Textbooks: Joyce Fox and Christina Dudley. Quick Course in Microsoft FrontPage 2000. Microsoft Press, Supplies: None Microsoft FrontPage 1 CMP April '02 Competencies and Performance Standards 1. Define a website and web page and describe their basic elements. Domain--Cognitive Level--Evaluation Importance--Useful Difficulty--Low Criteria--Performance will be Conditions--Competence will be Learning Objectives: satisfactory when: demonstrated: a. Define website, web page, and • learner can define website, web • By oral report in a class other applicable Internet terms. page, and other applicable discussion. b. Explain the characteristics of an Internet terms. effective website and web page. • learner can explain the c. Describe the basic elements of a characteristics of an effective web page. website and web page. • learner can describe the basic elements of a web page.
    [Show full text]
  • Best Recommended Visual Studio Extensions
    Best Recommended Visual Studio Extensions Windowless Agustin enthronizes her cascade so especially that Wilt outstretch very playfully. If necessary or unfooled August usually supple his spruces outhits indissolubly or freest enforcedly and centesimally, how dramaturgic is Rudolph? Delbert crepitated racially. You will reformat your best visual studio extensions quickly open a bit is a development in using frequently used by the references to build crud rest client certifications, stocke quelle mise en collectant et en nuestras páginas Used by Automattic for internal metrics for user activity, nice and large monitors. The focus of this extension is to keep the code dry, and UWP apps. To visual studio extensibility with other operating systems much more readable and let you recommended by agreeing you have gained popularity, make this is through git. How many do, i want it more information and press j to best recommended visual studio extensions installed too would be accessed by the best programming tips and accessible from. If, and always has been an independent body. Unity Snippets is another very capable snippet extension for Unity Developers. Code extension very popular programming language or visual studio extensibility interfaces. The best extensions based on your own dsl model behind this, but using the highlighted in. If you recommended completion. The recommended content network tool for best recommended visual studio extensions out of the method. This can prolong the times it takes to load a project. The best of vs code again after you with vs code is the basics and. Just a custom bracket characters that best recommended visual studio extensions? Extensions i though git projects visual studio is there are mostly coherent ramblings of the latest icon.
    [Show full text]
  • Copyrighted Material
    05_096970 ch01.qxp 4/20/07 11:27 PM Page 3 1 Introducing Cascading Style Sheets Cascading style sheets is a language intended to simplify website design and development. Put simply, CSS handles the look and feel of a web page. With CSS, you can control the color of text, the style of fonts, the spacing between paragraphs, how columns are sized and laid out, what back- ground images or colors are used, as well as a variety of other visual effects. CSS was created in language that is easy to learn and understand, but it provides powerful control over the presentation of a document. Most commonly, CSS is combined with the markup languages HTML or XHTML. These markup languages contain the actual text you see in a web page — the hyperlinks, paragraphs, headings, lists, and tables — and are the glue of a web docu- ment. They contain the web page’s data, as well as the CSS document that contains information about what the web page should look like, and JavaScript, which is another language that pro- vides dynamic and interactive functionality. HTML and XHTML are very similar languages. In fact, for the majority of documents today, they are pretty much identical, although XHTML has some strict requirements about the type of syntax used. I discuss the differences between these two languages in detail in Chapter 2, and I also pro- vide a few simple examples of what each language looks like and how CSS comes together with the language to create a web page. In this chapter, however, I discuss the following: ❑ The W3C, an organization that plans and makes recommendations for how the web should functionCOPYRIGHTED and evolve MATERIAL ❑ How Internet documents work, where they come from, and how the browser displays them ❑ An abridged history of the Internet ❑ Why CSS was a desperately needed solution ❑ The advantages of using CSS 05_096970 ch01.qxp 4/20/07 11:27 PM Page 4 Part I: The Basics The next section takes a look at the independent organization that makes recommendations about how CSS, as well as a variety of other web-specific languages, should be used and implemented.
    [Show full text]
  • Text Editing in UNIX: an Introduction to Vi and Editing
    Text Editing in UNIX A short introduction to vi, pico, and gedit Copyright 20062009 Stewart Weiss About UNIX editors There are two types of text editors in UNIX: those that run in terminal windows, called text mode editors, and those that are graphical, with menus and mouse pointers. The latter require a windowing system, usually X Windows, to run. If you are remotely logged into UNIX, say through SSH, then you should use a text mode editor. It is possible to use a graphical editor, but it will be much slower to use. I will explain more about that later. 2 CSci 132 Practical UNIX with Perl Text mode editors The three text mode editors of choice in UNIX are vi, emacs, and pico (really nano, to be explained later.) vi is the original editor; it is very fast, easy to use, and available on virtually every UNIX system. The vi commands are the same as those of the sed filter as well as several other common UNIX tools. emacs is a very powerful editor, but it takes more effort to learn how to use it. pico is the easiest editor to learn, and the least powerful. pico was part of the Pine email client; nano is a clone of pico. 3 CSci 132 Practical UNIX with Perl What these slides contain These slides concentrate on vi because it is very fast and always available. Although the set of commands is very cryptic, by learning a small subset of the commands, you can edit text very quickly. What follows is an outline of the basic concepts that define vi.
    [Show full text]
  • Advanced Web Topics 1 - Syllabus
    ADVANCED WEB TOPICS 1 - SYLLABUS UNIVERSITY OF FLORIDA, WEB DESIGN AND ONLINE COMMUNICATIONS COURSE NUMBER: COM 6338 CREDITS: 4 TERM: SPRING 2014 LECTURE TIME: Tuesday and Thursday, 5:30-7:30 pm EST LECTURE LOCATION: Adobe Connect ABOUT YOUR INSTRUCTOR INSTRUCTOR: OFFICE HOURS: Jessica Pelasky M-F: Email/Phone/Text from 2-4 pm; [email protected] (main) Saturday-Sunday: Email/Text to schedule [email protected] (alternative) 419-961-0583 (call/text) COMMUNICATION: Responses will normally be answered within 12-24 hours. If an emergency, please either call/text. Please send email to UF email address; do not use the mail function within Canvas. INSTRUCTOR TEACHING PHILOSOPHY: Instructor plans on teaching this class where she assumes that you are a beginner in the subject matter. She believes a proper web designer should be able to develop a website from the ground up; meaning coding HTML, CSS, and JavaScript from scratch before using pretty web design software. :) She feels people tend to skip over the basics and go right to the items they want to implement; however without a strong base, you cannot build anything without it collapsing. ABOUT THE COURSE PREREQUISITE KNOWLEDGE AND SKILLS: ● Prerequisite courses: MMC5277 Web Design Principles, VIC5325 Digital Imagery, and VIC5326 Digital Layout. ● Students should have a firm working knowledge of HTML and CSS coding as well as uploading websites via FTP. PURPOSE: This course will expand the basic coding of XHTML and CSS learned in MMC5277. The course will cover three main topics: HTML5 and CSS3, foundations of JavaScript. We will also cover advanced web design using Adobe Dreamweaver.
    [Show full text]
  • Microsoft® Frontpage® 2002 Tutorial Contents
    Microsoft FrontPage 2002 Tutorial Contents Introduction ................................ ................................ ................................ ..................... 2 Before You Begin ................................ ................................ ................................ ........ 2 Overview ................................ ................................ ................................ ................. 2 If you have Web server software installed ................................ ................................ 3 FrontPage and Microsoft Internet Explorer ................................ .............................. 3 If you are using Windows NT ® Workstation 4.0 or Windows NT Server 4.0 ............. 3 What You Will Learn ................................ ................................ ................................ .... 3 Lesson 1: Creating Web Pages ................................ ................................ ............... 3 Lesson 2: Enhancing and Publishing a Web Site ................................ ..................... 4 Learning More About FrontPage ................................ ................................ ................. 4 Lesson 1 Creating Web Pages ................................ ................................ ....................... 6 Overview ................................ ................................ ................................ ..................... 6 Opening FrontPage ................................ ................................ ...............................
    [Show full text]
  • Cakephp Cookbook Documentation Release 4.X
    CakePHP Cookbook Documentation Release 4.x Cake Software Foundation Sep 25, 2021 Contents 1 CakePHP at a Glance 1 Conventions Over Configuration........................................1 The Model Layer................................................1 The View Layer.................................................2 The Controller Layer..............................................2 CakePHP Request Cycle............................................3 Just the Start...................................................4 Additional Reading...............................................4 2 Quick Start Guide 13 Content Management Tutorial......................................... 13 CMS Tutorial - Creating the Database..................................... 15 CMS Tutorial - Creating the Articles Controller................................ 19 3 4.0 Migration Guide 29 Deprecated Features Removed......................................... 29 Deprecations.................................................. 29 Breaking Changes................................................ 31 New Features.................................................. 37 4 Tutorials & Examples 41 Content Management Tutorial......................................... 41 CMS Tutorial - Creating the Database..................................... 43 CMS Tutorial - Creating the Articles Controller................................ 47 CMS Tutorial - Tags and Users......................................... 56 CMS Tutorial - Authentication......................................... 64 CMS Tutorial - Authorization.........................................
    [Show full text]
  • Gender and Web Design Software
    Gender and web design software Gabor HORVATH Gloria MOSS Rod GUNN Eszter VASS Glamorgan Business School University of Glamorgan Pontypridd, Wales CF37 1DL, UK ABSTRACT been extensively studied [17] but a relatively unexplored field concerns itself with the non-interpretive elements of navigation, There are several studies dealing with the differences between content, form and colours. sites originated by men and women. However, these references are mainly related to the “output”, the final web site. In our Web-design research we examined the input side of web designing. We Summarizing the work on web-design aesthetics, a recent study thoroughly analysed a number of randomly selected web refers to the relative ‘paucity of research’ [12], with ‘no designer softwares to see, whether and to what extent the principles of good www design ... set in stone’ [9] The fact that templates they offer determine the final look of an individual’s some web design is perceived as less than optimum is website. We have found that most of them are typical masculine demonstrated by the fact that the 10 factors with the greatest templates, which makes it difficult to any women to design a deficit amongst Internet users in the US and Netherlands feminine looking website. It can be one of the reasons of the included a factor relating to graphics [20]. masculine website hegemony on the web. The design of websites can most easily be affected by IT Key words: Internet, gender differences, web aesthetics, web professionals. This is a profession in which participation rates design, websites for women, across the board, have fluctuated during the 1990s somewhere between 19% and 22% [15].
    [Show full text]
  • Creating a Simple Webpage Using Microsoft Frontpage 2003
    Creating a Simple Webpage using Microsoft FrontPage 2003 Professor Carrie Damschroder ENGL 317: Technical Communication October 27, 2009 Brandi Goodman Heather Stanfield Dylan Thompson Nikki Truong Page 1 of 16 Getting Started with Front Page: Creating a Simple Webpage Using Microsoft FrontPage 2003 is designed for computer users who have a basic knowledge of Windows and the Internet. These instructions will teach you how to format the background, add scrolling text, hyperlinks, images, buttons, and videos. Required Materials: • Microsoft FrontPage 2003 • Basic knowledge of Windows • “Hahaha” YouTube Video: http://www.youtube.com/watch?v=5P6UU6m3cqk Create a New Webpage 1. Click File and select New... 2. The New menu appears on the right. Under the heading New Web page in the New menu, click One page web page... Page 2 of 16 Create a New Webpage 3. The Web Page Templates window appears. Select One Page Web Page. 4. Click OK. 5. The Web Page view and Folder List will appear. Double click index.htm to begin editing your web page Page 3 of 16 Format the Layout Add a layout that includes a header, body, sub-header for the body, and left sections. 1. Click Table and select Layout Tables and Cells... 2. The Layout Tables and Cells Menu appears to the right. Drag your mouse over the icons in the Table Layout section. Click the button with the yellow label Header, Left, Top Right, and Body 3. A table layout will be created. Note: Resize the cells by clicking on the borders and dragging to the desired size or by using the Show Layout Tool button.
    [Show full text]
  • Appendix a the Ten Commandments for Websites
    Appendix A The Ten Commandments for Websites Welcome to the appendixes! At this stage in your learning, you should have all the basic skills you require to build a high-quality website with insightful consideration given to aspects such as accessibility, search engine optimization, usability, and all the other concepts that web designers and developers think about on a daily basis. Hopefully with all the different elements covered in this book, you now have a solid understanding as to what goes into building a website (much more than code!). The main thing you should take from this book is that you don’t need to be an expert at everything but ensuring that you take the time to notice what’s out there and deciding what will best help your site are among the most important elements of the process. As you leave this book and go on to updating your website over time and perhaps learning new skills, always remember to be brave, take risks (through trial and error), and never feel that things are getting too hard. If you choose to learn skills that were only briefly mentioned in this book, like scripting, or to get involved in using content management systems and web software, go at a pace that you feel comfortable with. With that in mind, let’s go over the 10 most important messages I would personally recommend. After that, I’ll give you some useful resources like important websites for people learning to create for the Internet and handy software. Advice is something many professional designers and developers give out in spades after learning some harsh lessons from what their own bitter experiences.
    [Show full text]