MyBlogHelp– A Blog for Digital Marketing, Affiliate Marketing, Organic Lead Generation.
  • Home
  • About
  • Contact
  • Privacy
  • Sitemap
  • BLOG
  • AFFILIATE MARKETING
    • LeadsArk
  • MORE
    • MAKE MONEY
      • ONLINE BUSINESS
      • ADSENSE
      • AFFILIATE MARKETING
    • BLOGGING
      • SEO
      • BlogSpot
      • WORPRESS
      • GOOGLE
      • COMPUTER TIPS
    • WEB DESIGN
      • HTML
      • CSS
      • BOOTSTRAP
      • JAVASCRIPT
      • JQUERY
    • WEB DESIGN
      • HTML
      • CSS
      • BOOTSTRAP
      • JAVASCRIPT
      • JQUERY
    • WEB DEVELOPMENT
      • PHP
      • WORDPRESS
  • DOWNLOADS
    • Blogger Template
    • Wordpress Theme
    • PDF

Tuesday, December 11, 2018

How to use HTML Meta Tags?

 MyBlogHelp     December 11, 2018     html     No comments   

html-meta-tags
HTML Meta Tags

What are HTML <meta> Tags

Meta-data is represented by the <meta> tag. Meta-data means data about data. In the simplest terms, this tag provides information about the HTML document.
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

Sunday, December 9, 2018

How to use HTML script & noscript Tag?

 MyBlogHelp     December 09, 2018     html     No comments   


HTML-script-tag
script tag

Introduction of HTML <script> Tag

<script> tag of HTML is used to define client side script in web pages. For example, through the <script> tag you can add JavaScript in the HTML document. JavaScript is a client-side scripting language. With the help of this, you can generate dynamic content and validate forms etc.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

Friday, December 7, 2018

How to use DOCTYPE declaration in HTML?

 MyBlogHelp     December 07, 2018     html     No comments   


HTML <! DOCTYPE>

This is not a tag in HTML. This is called document type declaration. As you can guess by its name, it provides information about the type of document. This information helps the interpreter to organize the webpage in a better way.

 <!DOCTYPE> declaration provides information to interpreter about the HTML version which is used in an HTML document. Many browsers do not support old HTML versions so whenever you create an HTML document, <!DOCTYPE> declaration tells the interpreter what version of HTML you are using.

Whenever an HTML document is rendered in the form of a webpage, it is first checked by the validators whether the HTML document is valid or not. The different validator is used to validate every version of HTML.

<!DOCTYPE> declaration tells the validator that the HTML document is to match with which HTML version. If the validators can't validate the document, then you can't show the webpage.

Whenever you declare <!DOCTYPE> in an HTML document, it must be the first line of the HTML document.

Syntax of HTML <! DOCTYPE>

<!DOCTYPE> is declared differently in every version of HTML. These are being described below.
       
HTML 4.01 <! DOCTYPE> Declaration

      In HTML version 4.01, <!DOCTYPE> is defined in three modes (Transitional, Frameset, and Strict). All elements of HTML are allowed in the Transitional mode, but frame-set is not allowed in this mode.


    Frameset mode is also like transitional mode, but framesets are allowed in it.

    In the Strict mode, all other elements except HTML are presentational elements and framesets are allowed.



XHTML 1.0 <! DOCTYPE> Declaration

     Similar to HTML4, it is declared in XHTML <!DOCTYPE> three modes. These modes apply in XHTML only to those that are in HTML4 but their syntax is different. The syntax of all these modes is being given below.

Transitional


Frameset


Strict



<!DOCTYPE> in HTML5

          In the HTML5, <!DOCTYPE> declaration has been made very easy and simple.

                                       <! DOCTYPE html>      

 A simple example of <! DOCTYPE> in HTML5 is given below.


           Hopefully, this "HTML Tutorial - <!DOCTYPE>” would be helpful for you. If it's so please help your friends and other bloggers to share this post on social media. If you have any question related to the post, please comment on the comment box and also follow this website for more information about the blogging and SEO tips. 


Previous:- How to use Form Tag in HTML?

Next:- How to use Script & Noscript in HTML?





Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

Thursday, December 6, 2018

How to use Form Tag in HTML?

 MyBlogHelp     December 06, 2018     html     No comments   


HTML Forms

On any webpage, if you want to take any information from the user, for this, you use forms. For example, whenever you create a new email id, first of all, you fill up the sign-up form and you provide your information via a webpage.

Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

Wednesday, December 5, 2018

How to use Block and Inline Tags in HTML?

 MyBlogHelp     December 05, 2018     html     1 comment   

HTML Block and Inline Tags

          Block Tags

HTML has two types of block level and inline tags. Whenever block level tags are shown on the webpage, a line of space is created before and after that automatically. Some common block level tags are div, p and h1 etc.

          Inline Tags


The second types of tags are inline tags. When these tags are used, on the webpage these show up in the line of their previously used tags. If you do not use the <br/> tag then there is no space before and after it. Some inline tags are a span, anchor and img etc.

HTML <Div> Tag

The <div> tag is used to divide the page. This is also called a division tag. You can use other HTML tags in this tag. <div> is a block level tag. You can design your web page using this tag with CSS. This page divides the entire page into the section.

These sections can hide and show when you need it. By doing this, the information will be shown to the visitor, when he wants to see it. The CSS applies to all the tags inside of <div>.

The <div> tag can be used to separate different types of information from a webpage. An example of this is being given below.


The above script generates the given web page.

html-div-tag

Some other block-level tags

          <form>

<form> tag is a block level tag. With this tag, you can define the beginning and end of the form on a webpage. Other related tags from other HTML forms come within this tag.

        <h1> ..... </ h6>

All heading tags are block level tags. Every heading defines a block of itself where it has an automatic line break before and after.

         <p>

As you know paragraph is defined by <p> tag. This tag creates a break line before and after every paragraph. Therefore <p> tag is also known as block level tag.

         <ol>, <ul>

Both list tags <ol> and <ul> are block- level tags because every list defines a section for itself.

         <table>

The <table> tag is also considered a block level tag because it creates a separate section which is separate from the entire content of the page and includes line breaks before and after it.

         <pre>

This is a block level tag. All other tags can be used in this tag and by using it, as you configure tags in the text editor, it will show up the same on the webpage.

HTML <span> Tag

<span> is an inline tag. It is used to format the text. Whenever you use this tag, your text remains in the same line instead of going to the second line.
Formatting applies only to the text that is between this tag. <span> tag does not have any attributes of itself, but you can use style and class attributes with this tag. You can also use this tag in the headings.




An example of this is being given below.



     The above script generates the given web page.


html-span-tag

Some Other Inline Tags

<a>


<a> tag is considered inline tag. You can link any text while using it. Doing so, it shows on that webpage in the same line.

          <b>

<b> tag bold the text without any line break. So this is also an inline tag.

          <i>

<i> tag makes text italic and this is also an inline tag.

          <u>

From the <u> tag,  you underline the text. It is also considered inline tag.

         <img>

From the <img> tag, you can insert the image between the texts. Doing so, it does not break any line in the text. Therefore <img> tag also has an inline tag.

         <input>

With the <input> tag you can create other elements inside the form such as textbox and button etc. But if you do not use <br/> tag then there is no line break between these elements.


         Hopefully, this "How to use Block and Inline Tags in HTML?” would be helpful for you. If it's so please help your friends and other bloggers to share this post on social media. If you have any question related to the post, please comment on the comment box and also follow this website for more information about the blogging and SEO tips. 



Previous:- How to use List in HTML?               Next:- How to use Form Tag in HTML?









Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

How to use Lists in HTML?

 MyBlogHelp     December 05, 2018     html     5 comments   

HTML Lists

          You can represent any information through the lists in HTML.  HTML list make your webpage in well-formed look. There are three types of the list in HTML. These are an ordered list, unordered list, description list and nested list is nothing but list inside a list. In the web designing and development, lists play the vital role, basically creating menu or navigation bar.

There are some terms, you should have to know.


<ul>:- It is used for the unordered list.

<ol>:- It is used for the ordered list.
<li>:- It is used for list item.
<dl>:- It is used for description list.
<dt>:- It is used for the term in the description list.
<dd>:- It is used to describe the term in a description list.
type:- This an attribute which is used to define item serial number.
start:- This an attribute which is used to define start point. 

Ordered-Lists

This list is in the order form. You can order such a list in many ways, such as numbers (1, 2, 3, 4), small Roman numbers (I, ii, iii, iv), capital Roman (I, II, III, IV) small alphabets (a, b, c, d), capital alphabets (A, B, C, D) etc. This type of list you can create by using <ol> tag.

    Example of Ordered Lists

You use the <ol> tag to create the ordered list as I told you earlier. After this tag, you define the list item to use <li> tag. This tag is also used in the unordered list. An example of this is being given below.



The above script will generate the given web page.


order-list


Attribute

Attribute type in the ordered lists

You can also use the type attribute with the Ordered List. By Type Attribute, you tell how you want to order the list. Like if you want a list of numbers, then you define the value of type attribute 1. Apart from this, if you want to list in alphabet order, the value of the type attribute will be a. You can also define the list with roman letters, for this, you give the value I of the type attribute. 


type="1“ --> start numbering with numbers (default)
type="A“ --> start numbering with uppercase (capital) letters
type="a“ --> start numbering with lowercase (small)  letters
type="I“ --> start numbering with uppercase (capital) roman numbers
type="i“  --> start numbering with lowercase (small) roman numbers

Attribute start in the ordered lists

         This an attribute which is used to define start point from where item serial number will continue.



Start=“20” Ă  By default, an ordered list will start counting from 1. If you want to start counting from a specified number, you can use the start attribute.

<ol type=“1” start=“20”>
    <li>Book</li>
              <li>Copy</li>
              <li>Pen</li>
           </ol>


Output:-           20 Book

                21 Copy
                22 Pen



Now you can use the below code and try to get the output using both attribute type and start.


The above script will generate the given web page.


type-attribute

Unordered-Lists

This type of list is in unordered form. Items like this list are represented with bullets, circle and squire etc. This type of list you can create by using <ul> tag.

Attribute type unordered lists



Disc --> Sets bullet (default)
Circle --> Sets circle
Square --> Sets square

None --> The list items will not be marked

    Example of Unordered Lists

You use the <ul> tag to create an unordered list. After this tag <li> tag item list is defined. In this type of list, 3 types of type attribute can be given.


With disc, circle and square values, you can create different types of unordered lists. An example is given below.


The above script will generate the given web page.


unordered-list

Description Lists

In the Description list first, you define a list item and then provide its definition. This type of list you can create by using <dl> tag. The <dt> tag is used to declare list item and <dd> tag for its definition.

Example of Description Lists

By definition Definition lists you provide a definition of a term. To create Definition lists, you use <dl>, <dt> and <dd> tags. An example is given below.


The above script will generate the given web page.


definition-list

Nested Ordered Lists

            List under list is called nested list. It can be defined for each list ordered list, unordered list and definition list accordingly. You can see in the below example. Inside Tea, there are two items Black tea and Green tea.


<ul>
    <li>Coffee</li>
    <li>Tea
            <ul>
<li>Black Tea</li>
                  <li>Green Tea</li>
     </ul>
     </li>
     <li>Milk</li>
</ul>


For your practice, you can use the below code.



The above script will generate the web page as below.


ordered-nested-list

Nested Unordered Lists

                This is the same as nested ordered lists only you have to replace <0l> into <ul>.  



The above script will generate the given web page.


unordered-neststed-list


Nested Description Lists

This is the also description list inside the description list.



The above script will generate the given web page.


definition-nested-list


Hopefully, this "HTML Tutorial - Lists” would be helpful for you. If it's so please help your friends and other bloggers to share this post on social media. If you have any question related to the post, please comment on the comment box and also follow this website for more information about the blogging and SEO tips. 

Previous:- Img tag in HTML?           Next:- Block & Inline tag in HTML?             


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

Monday, December 3, 2018

How to use Image Tag in HTML?

 MyBlogHelp     December 03, 2018     html     No comments   

Introduction of HTML Images

Images on webpage should be attractive and beautiful. You can add an image on the webpage using HTML. For this, you will have to use <img> tag. The <img> tag provides many attributes from which you can control the presentation of the image.

Syntax and Attribute of <img> tag

<img src=”url” alt=“text”><img>

<img> tag is an empty tag because it is without closing/end tag. It    contains attributes only.

src:- src attribute specifies the URL (web address) and Path of the image.

alt:- alt attribute provides an alternate text instead of image, if the user unable to view image because of slow connection.

width:- With this attribute, you can set the width of the image.

height:- With this attribute you can set the height of the image.

style:- With this attribute you can apply CSS rules on the images.

Including images in web page

You can use <img> tag to include images in any webpage as mentioned above. The use of src attribute with <img> tag is necessary. All the attributes are optional. Example of this tag is below.





The above script will generate the output on the web page as below.


html-img-tag

Setting alternative text with images

Because of some reason, if the image is not shown then alternate text display in that place. These attributes are also used to tell the search engines about what the image is about to. An example of this is given below.




      If there is no picture load due to any reason, then alternate text will be shown in this way.


html-img-alt

Setting height & width of images

You use height and width attributes to set height and width. Their values will be in integers.



        The above script will generate the given webpage.


html-img-height-weight

Setting border of images

You can also set the border of the image, for this, you use the border attribute. This attribute has the value border size.



        The script above will generate the given web page.

html-img-border

Making image a link

You can even make a link for the image. By doing so, whenever a person clicks on an image, a new webpage will open. For this you write <img> tag in <a> tag. Instead of text in the anchor tag you define the <img> tag.
An example of this is given below.



This script generate the the output as below.

html-img-link

The above example shows an image where you can open the link to click on image.

Hopefully, this "HTML Tutorial - Image” would be helpful for you. If it's so please help your friends and other bloggers to share this post on social media. If you have any question related to the post, please comment on the comment box and also follow this website for more information about the blogging and SEO tips. 


Previous:- How to use Table Tag in HTML?          Next:- How to use List in HTML?      
  



Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Posts Older Posts Home

Followers

Blog Archive

  • ▼  2020 (4)
    • ▼  October (1)
      • How does Affiliate Marketing work? | Steps to star...
    • ►  September (1)
    • ►  August (2)
  • ►  2019 (52)
    • ►  December (1)
    • ►  November (2)
    • ►  October (1)
    • ►  August (1)
    • ►  July (1)
    • ►  May (11)
    • ►  April (10)
    • ►  March (6)
    • ►  February (3)
    • ►  January (16)
  • ►  2018 (54)
    • ►  December (27)
    • ►  November (5)
    • ►  May (5)
    • ►  April (4)
    • ►  February (3)
    • ►  January (10)
  • ►  2017 (17)
    • ►  December (9)
    • ►  November (8)

Popular Posts

  • How to use the main tag in html5?
  • How to use keygen tag in html5?
  • How to use html5 mark tag to highlight text?
  • How to start Online Business without money from home?
  • What is a search engine?

Contact Us

Name

Email *

Message *

About MyBlogHelp

Most of the posts, we share on this blog related to Affiliate Marketing, Organic Lead Generation, Digital Marketing, Social Media Marketing, Make Money Online, SEO, and web design.

Featured Post

LeadArk - Affiliate Marketing | Qualified Organic Lead Generation | LeadsArk Review

Copyright © MyBlogHelp– A Blog for Digital Marketing, Affiliate Marketing, Organic Lead Generation.
Design by Md. Abdussamad | MyBlogHelp.com