html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
tags. The document is an introductory guide to basic HTML elements and tags for designing simple web pages."> 0 ratings0% found this document useful (0 votes) 80 viewsWhat Is A Computer Network? The document provides information about HTML (Hypertext Markup Language) and how to create basic web pages using HTML tags. It defines common HTML tags like <html>, <head>, <title>, <body> and describes how to format text using tags like <b>, <i>, <u> and insert images using the <img> tag. It also discusses creating hyperlinks using the <a> tag and tables using <table>, <tr> and <td> tags. The document is an introductory guide to basic HTML elements and tags for designing simple web pages. Uploaded byFatmir KelmendiCopyright © © All Rights Reserved Available Formats Download as PDF, TXT or read online on Scribd 0 ratings0% found this document useful (0 votes) 80 viewsWhat Is A Computer Network? The document provides information about HTML (Hypertext Markup Language) and how to create basic web pages using HTML tags. It defines common HTML tags like <html>, <head>, <title>, <body> and describes how to format text using tags like <b>, <i>, <u> and insert images using the <img> tag. It also discusses creating hyperlinks using the <a> tag and tables using <table>, <tr> and <td> tags. The document is an introductory guide to basic HTML elements and tags for designing simple web pages. Uploaded byFatmir KelmendiCopyright © © All Rights Reserved Available Formats Download as PDF, TXT or read online on Scribd You are on page 1/ 9 HTMLWhat is a computer network?A computer network is a collection of computers linked through cables or wireless means. What is Internet? What do you need to set up Internet?In order to setup Internet, we need a computer, MODEM (external or internal) and a telephone connection. How do you set up Internet?To set up the Internet, the computer has to be connected to the telephone through the MODEM. The user has to register with an Internet Service Provider (ISP) with a username, who in-turn gives an Internet registration address on the computer which shall be used to connect the computer to the Internet. This registration address is called the IP address. What is a MODEM? What are internal and external modems?Internal modems are those which can be fixed inside the computer. They are available in the form of printed circuit boards with connecting outlets. External modems are those, which are to be connected to the computer and placed What is a browser? There are different types of browser, the text browser which displays only text. What is HTML? What are container tags?Container tags are those, which are in pairs. Other tags and messages are typed between the pair. e.g. <HTML></HTML>, <BODY></BODY> What are empty tags?Empty tags appear as single tags. e.g. <BR>, <HR> What are attributes of tags?Attributes of tags are the properties of the tags that have special functions to perform such as BGCOLOR gives the background colour, BORDERCOLOR gives a color to the border of a table. Let us see the tags used to design the HTML pages.All HTML pages begin with <HTML> and end with </HTML>. This is a container The header section of the HTML is designed using the <HEAD></HEAD>. This The body of an HTML page is designed using the tags<BODY></BODY>. Theinformation which has to be displayed on the browser is enclosed between the <BODY> and </BODY> tag. The following example shows the usage of the above-discussed tags.<HTML> The message MY PAGE is displayed on the title barThe message This is my first HTML page." appears as the body of the HTML page. The text typed in the body of the HTML page appear continuously. It can be broken <HTML> TEXT-FORMATTING : <HTML> We can create new paragraphs using the tag <P>. Paragraphs can be aligned to the <HTML> Certain situations arise which displaying formulae on the HTML pages. These For example, when we need to display formula such as H2O, CaCO3, H2SO4, or x2, Tabs to display the text like x2, 3x3 are called superscript tags and those used to Tag used for superscript formatting is <sup></sup>.To display x2, 3x3 the HTML code will be as follows x2 = x<sup>2</sup> Tag used for subscript formatting is <sub></sub>.To display H2O, CaCO3, H2SO4 the HTML code will be as follows H2O = H<sub>2</sub>O WORKING WITH GRAPHICSGraphics are any pictures drawn using a computer. The pictures are also referred by .BMP - Bit Map Picture format..GIF - Graphics Interchange Format (can be still pictures or animated) .JPG - (JPEG) Joint Photographic Experts Group .TIF - Tagged Image File format . PNG - Ping format The best formats used on HTML pages are GIF, JPG and PNG. The GIF occupies We cannot use the cut-paste or copy-paste technique to display images on the HTML Given a picture rabbit1.jpg, the following code uses the IMG tag to insert the picture <HTML> To provide a border of a specified thickness, we have to use the attribute BORDER.In the example, the border of thickness 3 pixels has been specified. <html> In order to place this picture as a background for the entire HTML page, we use the <html> Hyperlinks play very important role in connecting pages in the same website or pages The hyperlinks which connect across sites are known as External hyperlinks, while The tag which is used to create hyperlinks is the <A></A> container tag. This is tag EXTERNAL LINK External links are created with <A></A> tag in the following manner: <A HREF=http://www.google.com>Google</A> Link text INTERNAL LINK Internal links are created in two stages.First the location to be liked is marked using the name attribute as follows: <A name = position1></A>Second step is linking this location using the HREF. <A HREF=#position1>Position 1</A> Link text Inserting the attribute target=_blank inside the tag <A> will open the page in a COLSPAN The following example and the illustration display the action of COLSPAN. <TABLE> The column containing AmountProduct Amount spans two columns. COMPUTER $1299 95c MOUSE $15 95c ROWSPAN The following example and the illustration display the action of COLSPAN. Eyes You might also like
|