Posts

Office Tools-Open Office. Org Writer-I

Image
Chapter 6 Office Tools-Open Office. Org Writer-I Word Processor A word processor is a package that enters text and applies formatting features to create error free documents. The word processing software provides various tools for typing, editing and formatting text. It can be used to produce documents such as letters, memos, reports and mailing labels. Examples of some word processing software's are:- MS word(owned by microsoft) Libre Office Writer(open source application or free license) Open office writer(open source application or free license) Corel WordPerfect(owned by corel) and web based word processor such as office online and google docs. Features of word processor Fast Typing Speed Formatting Features Editing Features Spell check and Grammar Check Drawing Auto Shapes and Inserting Pictures. Mail Merge Object Linking and Embedding(OLE) Allow PDF Conversion of file. Components of document window: Title bar:  The top m...

Images, Links, Table and forms in HTML

Image
  Chapter 4 Images, Links, Table and Forms in HTML Image Tag- You can insert image in your web page by using <img> tag. The browser support various format image formats like .gif(graphic Interchange Format), .jpg(joint photographic experts group), bmp(bit map picture). etc. <img> tag is an empty tag. Syntax- <img src=”image file name”> Attributes in <img> tag : src=”source” alt=”alternate text” height=”value in pixel or percentage” width=”value in pixel or percentage” align=”left/right/middle/top/bottom” border=”value in pixel” title=”tooltip text” Linking in HTML A link in HTML is a connection from one web resource to another. A link or hyperlink points to a documents or to a specific element within a document. To create hyperlink, we use <a> tag where a means anchor. The hyperlink tag starts with <a> and include the attribute 'href'=”URL” followed by some text and then it has a corresponding closing tag </a> . Th...