Skip to main content

Posts

What is HTML and how does it work?

What is HTML and how does it work? In this article, we will know what is HTML. In this world, every person needs the means to earn money so that he can fulfill his own needs and fulfill his dream. Different people do different kinds of work like if someone does their own business then someone works inside a company. Whether the work is big or small, a person has to work hard in every work, only then can he become successful in his life. In the same way, a blogger also earns hard money through the Internet. Just as the rest of the work requires hard work and perseverance, in the same way, a lot of hard work has to be done for blogging. To blogging, a person does not need much, just a computer or laptop and he should have an internet connection. And the most important thing that should be done for blogging is "knowledge". The most important thing to start blogging is to create a website of your own. What is needed to make more websites? Must have a thorough knowledge of HTML. I...

HTML & CSS

  HTML & CSS:                 CSS Stands for “Cascading Style Sheet”. It was introduced in late 1996.             CSS saves a lot of work and time. With CSS, you can control the color, font, the size of text, the spacing between elements,   what background images or background colors are to be used, different displays for different devices and screen sizes, how elements are positioned and laid out, and much more!   It is used to control the layout of various             Web pages all at once. Types of CSS:             There are three types of the style sheet 1.       Inline styling 2.       Internal styling 3.       External styling Inli...

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...