HTML -
Voice of Web
Introduction Hyper Text Markup Language is the heart of web. It is so very easy to learn that it takes hardly 1 hour of our time and sweats us the least. The primary advantage with HTML is that we need not require any extraordinary programming skills to master it. All we need to remember is set of tags and that’s all!! Fundas HTML files are first composed in notepad and then saved with the extension as .html. These files can always be edited by opening with notepad and opening with browser shows the result. Every HTML tag is of the form < keyword > and every tag ends as < / keyword > (Don’t worry about spaces and all other formatting criteria because HTML does’nt bother them). These tags can be viewed as functions in C. Example Simple program to display a message on browser:
First webpage in HTML Computer Science
Engineering In above example, tag is used to control the headings. Title is given to webpage using
tag. tag is used to display the text in the page. Here Computer is enclosed between
tag indicating that the text should be bold (same as orkut). Similarly, Science would appear as italic.
is used to make a line break. The tag is used to underline the text enclosed within the tags. The font tag is used to set the font style. Face sets the type of font and size, color are used respectively to adjust the size and color of text. (Color can be any name from predefined set of colors or its hexadecimal code) Thus the output of the above code would be Computer Science Engineering Some other important tags are:
The enclosed text shall be displayed in a paragraph
The enclosed text will appear big in the browser
Used to write first level headings
<s>
Striking the text
<sub>
Used for subscripting the text M Kishan 4th year