Posts

Showing posts from August, 2022

html div tag

Image
Body Tag 1] html - Font face, Size & Colour   <font> tag is the  use to change the format of the text on  web page. The HTML <Font> tag  supports following  tag additional .Font face and color depends entirely  the computer and browser that is the  being used to view your page  you can use HTML <font> tag to add style, size, and color to  text on your website. You can be use a <font> tag to set all of your text to same size, face, and color. Color  Attribute  Value   - rgb(x,x,x) Colorname Description   color tag Specifies the color of text. Either the color name  the six character color code may be to the  used to specify color HTML FONT Program font tag this is a face attribute allows the author to define one Roman", or more different font to be displayed the browser will display  first font specified but if that  not present on the computer the browser will...

HTML Body Tag Structure, Syntax, and Examples

Image
Head section   1]  <BODY>  </BODY> TAG :- The HTML <body> tag defines  main content of the HTML document to the section of the HTMI. document that will be directly visible on your web page. This tag is also commonly referred to as the <body> element. All those content which we write inside the <BODY> tag appear on the web browser.The <body> element contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc. Note: There can only be one <body>  HTML syntax for body tag <BODY> <h1> This is body tag </h1> </BODY> Attributes Use Body Tag:-  Bgcolor   :-  To change the background color of the web document. Background    :-  To set the background image on the body of the web document Text     :- To set the Foreground color of text. Left Margin   :- To set the Left Margin of the web document...

html script tag attributes

Image
html script Element The SCRIPT element  use to declare script, such JavaScript , within  HTML document   embedded external javascript file through src attribute. You can use the SCRIPT element for validating Web forms and manipulating the content and images present on these forms.  <script> document.getElementById("demo").innerHTML = "Hello JavaScript!"; </script>  The SCRIPT element is used inside the HEAD element, which uses the type attribute.  1 Introduction to scripts client-side script is the program that the may accompany HTML document or be embedded directly. The program executes on client machine document loads, or some other time such as a link is activated. HTML support for independent scripting language. Script offer authors is  extend HTML documents is highly active and interactive way.  example Script may  evaluated as document loads to the modify the contents of the document. Scripts  accompany a form to proce...