Skip to main content

Posts

Showing posts from November, 2020

HTML Quotations, Citations and Comments

  HTML Quotations, Citations and Comments Elements:                 HTML <blockquote>:                    The html <blockquote> component characterizes a segment or section that is cited or quoted from another source. Example: ·        Type the following code in notepad and save as quotations.html <HTML> <BODY> <p>Here is a quote from Skill Learning 7 website :</p> <blockquote cite="https://skilllearning7.blogspot.com/2020/11/html-text-formatting.html"> Welcom Every One<BR>Here you will learn different skills<BR> </blockquote> </BODY> </HTML> ·        Double click the file. ·        The web page will appear in the browser as below ...

HTML Text Formatting

HTML Text formatting: Different tags are used to format the text in HTML documents. Some of them are as follows: <B> tag is used to bold the text. It is closed by </B> tag. <I> tag is used to display the tag in italic style. It is closed by </I> tag. <Strong> tag is used to present an important message. It is close by </strong> tag. <BIG> tag is used to display a bigger text. It is close by < /BIG> tag. <SMALL> tag is used to display a text in small size. It is closed by </SMALL> <U> this tag is used to underline a text. It is closed by </U> tag. <SUB> tag is used to display text as a subscript. It is closed by </SUB> tag. <SUP> tag is used to display text as superscript. It is closed by </SUP> tag. Example: ·        Type the following code in notepad and save with “fotmatting.html”   <HTML> <BODY> ...

HTML Horizontal lines and Line Breaks

  HTML Horizontal Line: Horizontal lines used to separate different areas of a web page. The <hr> tag defines a break in an HTML page, by a horizontal line. rule. The <hr> element is used to separate content in an HTML page Example: ·          ·        Write the following code the notepad           <html> <body>         <h1> this is 1 heading </h1> <hr>         <h1> this is 1 heading </h1> <hr>   </html> </body>   ·        Save the file as “Horizontal.html” ·        Double click on the file. The following page will appear on the web page.   HTML Line Breaks: Line breaks are used to decide where the text will break(stop) on a line...

HTML Paragraphs

  HTML Paragraphs: Paragraphs are used to add text in a document. Paragraphs are defined with <p> tag. The use of ending tag </p> is optional. You can't be certain how HTML will be shown.   Huge or little screens and resized windows will make various outcomes.   With HTML, you can't change the presentation by adding additional areas or additional lines in your HTML code.   The program will consequently, eliminate any additional areas and lines when the page is shown Example: ·        Open notepad and type the following code:                 <HTML>                 <BODY>                         <P> This is a Paragraph ...

HTML Headings

  Headings: Heading are used to display different type of headings. “<Hn>” is the opening tag of headings and the closing tag is “</Hn>” where “n” is the size of the heading. Its value is from 1 to 6 . 1 represents the largest size and 6 represents the smallest size. HTML headings are titles or captions that you need to show on a site page . Example: compose and html code that show the heading on a page           <HTML>           <BODY> <h1> Heading      2 </h1> < h2 > Heading 2 < /h2 > < h3 > Heading 3 < /h3 > < h4 > Heading 4 < /h4 > < h5 > Heading 5 < /h5 > < h6 > Heading 6 < /h6 > </HTML>           </BODY> Save file with “heading.html” Double click the file. The page will open as follows...

HTML Introduction

HTML Introduction          HTML :                          Html stands for “Hyper Text Markup Language” .   HTML is not a programming Language It is a formatting Language.        What is HTML? Ø HTML represents Hyper Text Markup Language   Ø HTML is the standard markup language for making Web pages   Ø HTML portrays the structure of a Web page   Ø HTML comprises of a progression of components   Ø HTML components advise the program on how to show the substance   Tags and attributes:                 Html commands are known as tags Html tags are surrounded by             Angle brackets “<tag-name>” this o...