User:ZillurRehman

From WikiProjectMed
Jump to navigation Jump to search

Graphics & Animation

Well the topic i am going to talk about is Graphics and Animation. Still most of the people think that Graphics is not the place to be because its not a choice of a Wise person. But in my view when a person choses his/her profession its his own choice.

Mr. ZillUrRehman is very nice and descent person and is helping wikipedia with great help.

Adobe Photo Shop CS3

well i am using adobe photo shope since there was only Adobe Photoshop 6 launched. Photoshop CS3 is so cool really the work i was doing in 30 min in Photoshop 6 is now can be done in like 10 min its so cool. Well every one is taking time and putting information about Photoship work and no one is talking about how to work with camera work also and the thing I am talking about is that when you take pictures you also have keep the Photoshop tools and Effects in mind and then take pictures.

One more thing Adobe Photoshop can also publish your files into HTML files for web. and it comes very handy when you are working with HTML themes, it cuts the images you need for your web site banners or wall papers or buttons etc and link them to your html files whith the tag used to import image on your HTML page.

HTML information and study

HTML and Other Script based Languages

HTML is the main source of WEB, it is must to know for all the web designers. Even if you are a professional web designer you can forget some tags.


HTML

To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may potentially understand. The publishing language used by the world wide web is HTML (from HyperText Markup Language). HTML is essentially a scripting language that marks up a page with formatting commands. These commands are then interpreted by a Web browser and sent to your screen.

In practical terms, HTML is a collection of platform-independent styles (indicated by markup tags) that define the various components of a World Wide Web document. HTML was invented by Tim Berners-Lee while at CERN, the European Laboratory for Particle Physics in Geneva.

HTML Version

This guide(notes) reflects the most current specification--HTML Version 4.0-- plus some additional features that have been widely and consistently implemented in browsers.

What an HTML Document Is?

HTML documents are plain-text (also known as ASCII) files that can be created using any text editor (e.g., Emacs or vi on UNIX machines; SimpleText on a Macintosh; Notepad on a Windows machine). These files(commands in files) are then interpreted by a Web browser (a computer program that interprets HTML commands to collect, arrange, and display the parts of a web page.) and sent to your screen, For example Internet Explorer and Netscape Navigator.


HTML Page Foundations

The HyperText Markup Language (HTML) is composed of a set of elements that define a document and guide its display.

An element is a fundamental component of the structure of a text document. Some examples of elements are heads, tables, paragraphs, and lists. Elements can contain plain text, other elements, or both.

To denote the various elements in an HTML document, Tags are used. A tag is a coded command used to indicate how part of a web page should be displayed. HTML tags consist of a left angle bracket (<), a tag name, and a right angle bracket (>). Tags are usually paired (e.g..., < H1 > and < /H1 >) to start and end the tag instruction. The end tag looks just like the start tag except a slash (/) precedes the text within the brackets.

<tag> ... </tag> Some elements may include an attribute, which is additional information that is included inside the start tag.

<tag attribute=value> ... </tag> For example, you can specify the alignment of images (top, middle, or bottom) by including the appropriate attribute with the image source HTML code.

The Minimal HTML Document

Every HTML document should contain certain standard HTML tags. Each document consists of head and body text. The head contains the title, and the body contains the actual text that is made up of paragraphs, lists, and other elements. Browsers expect specific information because they are programmed according to HTML and SGML(Standard Generalized Markup Languageā€”a standard for describing markup languages) specifications.