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

Thursday, December 20, 2018

How to use aside tag in html5?

 MyBlogHelp     December 20, 2018     html     5 comments   

aside-tag-in-html5
ASIDE-TAG-IN-HTML5


<aside> Tag in HTML5

  • Introduction of <aside> tag 
  • Syntax of <aside> tag
  • Attributes of <aside> tag
  • Example of <aside> tag 

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

Wednesday, December 19, 2018

How to use details Tag in HTML5?

 MyBlogHelp     December 19, 2018     html     No comments   

details-tag-in-html5
DETAILS-TAG-IN-HTML5

<details> Tag in HTML5

   1. Introduction of <details> tag 
   2. Syntax of <details> tag 
   3. Attributes of <details> tag
   4. Example of <details> tag

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

Tuesday, December 18, 2018

How to use wbr tag in html5?

 MyBlogHelp     December 18, 2018     html     No comments   

WBR-TAG-IN-HTML5
HTML5-WBR-TAG


<wbr> Tag in HTML5

1. Introduction of <wbr> tag 
2. Syntax of <wbr> tag 
3. Attributes of <wbr> tag 
4. Example of <wbr> tag

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

Monday, December 17, 2018

How to use article tag in HTML 5 ?

 MyBlogHelp     December 17, 2018     html     No comments   


article-tag-in-html5
ARTICLE-TAG-IN-HTML5


HTML5 <article> Tag

1. Introduction of HTML5 <article> tag
2. Syntax of HTML5 <article> tag
3. Attributes of HTML5 <article> tag
4. Example of HTML5 <article> tag

Introduction to HTML5 <article> Tag

The header, footer and sidebar in the website can be the same on different pages but the article is unique on every page.

The article is the section of a website that contains the main content and which is most important to the user. On the basis of this section of your website, you get a ranking in search engines.

The content of the <article> tag is independent of the rest of your website content. That is, this content does not require other content. As there are different articles in the newspaper and these are all independent, so every article tag on your website is independent.

An article usually contains headings and paragraphs. Headings and paragraphs are defined by <h1> and <p> tags respectively. The HTML syntax of an article is as follows.

Syntax of HTML5 <article> tag

<article>
<h1> Heading </ h1>
<p> This is a paragraph. </ p>
</ article>

Sub headings (<h2>, <h3> etc.) are also used as required in an article. The footer can be also define in the <article> element. As shown below.

<article>
<h1> Heading </ h1>
<p> This is a paragraph related to main heading </ p>
<h2> Sub Heading </ h2>
<p> This is a paragraph related to subheading </ p>
<article>

Attributes of HTML5 <article> Tag

There is no element specific attribute of the <article> tag. But this tag supports all global attributes such as id, class, title etc.
<article id = "HTMLTutorial">
</ article>

Similarly, you can use other global attributes with <article> tag.

Styling <article> Tag

Like any other HTML element, you can also apply CSS rules to the <article>. You can define the width, color, and display of the article by CSS.

article
{
             width: 920px;
            color: # 272727;
             display: block;
}

As you can see in the syntax above, styles are applied by CSS on the <article> element. Similarly, you can apply many more CSS rules on this tag.

<article> Event Attributes

<article> element supports all global event attributes like onclick, onfocus, etc. By handling these events, you can make the web page interactive.

<article onclick = "script-code-here">

As you can see in the syntax above, onclick event attribute has been defined in the <article> element. Similarly, you can also define other event attributes.

Example of HTML5 <article> tag.



As you can see, in the above example, the main heading has been created inside the <article> element and later a paragraph has been added after that a subheading and a paragraph has been added again.

Similarly, more headings and paragraphs can be added in an <article> element. The above script generates output as below.



article-tag-in-html5
ARTICLE-TAG-EXAMPLE


Previous:- How to use base tag in HTML?

Next:- How to use wbr in HTML5?





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

Sunday, December 16, 2018

How to use menu tag in html?

 MyBlogHelp     December 16, 2018     html     1 comment   

MENU-TAG-IN-HTML
MENU-TAG-IN-HTML


HTML <menu> Tag

           1. Introduction of <menu> tag 
           2. Syntax of <menu> tag 
           3. Attributes of <menu> tag 
           4. Example of <menu> tag

Introduction to HTML <menu> Tag

HTML <menu> tag was included in the old versions but later it was excluded in HTML version 4.0.1. Now, this tag is included in HTML5 after redefining. <menu> tag is used to define the list of commands.

For example, you add an image to the web page. If you want to display your menu of the defined commands, and not display a default menu when someone right clicks on this image. For this, you will have to use the HTML <menu> tag.

Every command in the list of commands performs a specific task. For example, when you right-click on the desktop in the Windows operating system, you can see a list of some commands that perform different tasks.

Similarly, you can also create a list of commands for HTML elements, which will show the list of commands when the user right clicks on the specific text or image. Context menus, popup menus, toolbars and form controls can be created by <menu> tag.

In whatever element you want to apply the menu on the HTML element, you define the context menus attribute and pass it as the id value of the <menu> tag.

HTML <menuitem> Tag

The <menu> tag works as a container for the list of commands. Every command inside it is defined by <menuitem>. The <menuitem> tag has two main attributes label and icon.

In this, the display name of the command is defined by the label attribute and icon is defined by icon attribute. Defining the icon of the command is not mandatory. The general syntax of this tag is given below.

<menuitem label = "command-name" icon = "icon-image-url" event-attribute = "action"> </ menuitem>

What actions will be taken when clicking on a command, you can define it by HTML event attributes. For example, you can define from onclick event attribute what action will be taken when clicking on the command.

Syntax of HTML <menu> Tag


The general syntax for the HTML <menu> tag is given below. 
               
              <menu label = "" type = "" id = "">
             <menuitem attributes ...>
             </menuitem>
               </menu>

As you can see above in syntax, it is defined <menuitem> tag inside <menu> tag. It can also be called the subtag of the <menu> tag.

Attributes of HTML <menu> Tag


With the <menu> tag, the available attributes are described as below.

label 

With this attribute, you can define a display name of the menu. It is not mandatory to define it.

Type

 By this attribute, you can define what type of menu you want to show. This attribute can have three possible values those are given as below.

list - When you want to create a list of commands.

toolbar - When you want to create a toolbar

context - When you want to create a context menu

<menu> tag also supports all global and event attributes of HTML.

Example of <menu> tag in HTML



An image is added to the above example. The context menu has been applied on the user-defined menu (myMenu) on this image. In this menu, the refresh command is given which will reload the image when clicked. This example produces output as below.

HTML-menu-tag
EXAMPLE-HTML-MENU-TAG

 This tag works only in the Mozilla Firefox web browser.



Previous:- What is meta tag in HTML?

Next:- How to use address tag in HTML?










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

Saturday, December 15, 2018

How to use base tag in HTML?

 MyBlogHelp     December 15, 2018     html     No comments   

base-tag-in-html
BASE-TAG-IN-HTML

<base> Tag in HTML

1. Introduction to  <base> tag in HTML.
2. Syntax of <base> tag in HTML.
3. Attributes of <base> tag in HTML.

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

Thursday, December 13, 2018

How to use HTML hr and br Tag?

 MyBlogHelp     December 13, 2018     html     2 comments   


html-hr-br-tags
HTML-HR-BR-TAGS

HTML <hr> Tag

      The HTML <hr> tag is used to separate the content according to the subject. This tag generates a horizontal line that can be used to separate different topics. It is also called horizontal rule in HTML. In HTML5, the <hr> tag defines the thematic break and in old versions, it was used to create a horizontal rule.
Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg

Wednesday, December 12, 2018

How to use HTML address tag?

 MyBlogHelp     December 12, 2018     html     3 comments   

html-address-tag
HTML ADDRESS TAG

Introduction of HTML <address> Tag

HTML <address> tag is used to define the contact information of author or owner of a document. The <address> tag was added in HTML3. This tag is available in all subsequent versions of HTML3. It is also included in HTML5.

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