What is Web Page?
Generally it can be said that, the web page is the document that is created by a Markup Language called HTML. Web page is the combination of different component adding in different dimensions. The component can be stylist font, color, table, sound, image, animation, video, interlink with other web pages etc. The web browser is used to read HTML document and display them as a web page.
What is HTML?
The HTML is the abbreviation of Hyper Text Markup Language. HTML is a markup language, not the programming language. HTML is used to describe the webpage by markup language trough a set of markup tags and their attributes.
HTML Editor
An HTML editor is a software application used to writing HTML command and creating web pages. There are various forms of HTML editors like: Text editors, Object editors and WYSIWYG (What You See Is What You Get) editors.
Basic text editors
The following are some commonly used plain text editors:
Source code editors
Source code editors evolved from basic text editors, but include additional tools specifically geared to handling code.
WYSIWYG editors
Although the term WYSIWYG is often used for these editors but generally they are not truly WYSIWYG.
Tags
Tags are the elements that are used in the markup language. HTML tags are keywords surrounded by “<>” like <html>. HTML tags normally come in pairs like <b> and </b>. The first tag in a pair is the start tag; the second tag is the end tag. Start and end tags are also called opening tags and closing tags.
HTML attribute
HTML attributes are modifiers of HTML tags. They are generally written within the start tag of an element, after the element's name. They appear as name-value pairs, separated by "="
<''tag'' ''attribute''="''value''">(content to be modified by the tag)</tag>
Where tag names the HTML tags, attribute is the name of the attribute, set to the provided value.
No comments:
Post a Comment