SIGN UP MEMBER LOGIN:    
Blog

Using "details" tag in HTML 5

Posted by Vijay Prativadi Blogs | HTML 5 Feb 05, 2012
Today, in this blog let’s learn one more useful concept "details" tag in HTML5.
Introduction

This concept express good look and feel for website.

Question Arises: What is Details Tag in HTML 5?

In Simple terms "This tag provides an additional amount of information or hit that is required to process some operation by the user. It can be viewed or hidden by user".

So, I think we all are now good to go and implement this concept.

Step 1 : The Complete Code of Details.html looks like this:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame Remove this if you use the .htaccess -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <title>templates</title>
    <meta name="description" content="" />
    <meta name="author" content="Vijay" />
    <meta name="viewport" content="width=device-width; initial-scale=1.0" />
    <!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
    <link rel="shortcut icon" href="/favicon.ico" />
    <link rel="apple-touch-icon" href="/apple-touch-icon.png" />
</head>
<
body>
    <div>
        <header> <h1 style="text-align: center; color: Gray">Details tag - HTML 5</h1> </header>
        <div style="font-family: Verdana; font-size: 22">
            <details> <p>Question Arises: <b>What is Details Tag - Html 5</b></p> <p style="color: Blue">In Simple terms "This tag provides an
additional amount of information or hit that is requried to process some operation by the user. It can be viewed or hidden by user "</p> <p> <ul
style="color:Red"><li>This Tag is only Supported in Google Chorme Browser!!</li></ul> </p></details
>
        </div>
        <div style="text-align: center; font-family: Verdana; font-size: 22">
            <p>
                I hope this article is useful for you....I look forward for your comments and feedback....
                Thanks Vijay Prativadi</p
>
        </div>
        <br>
        <footer> <p style="text-align:center;color: Silver; font-family: Verdana; font-size: 22">&copy; Copyright by Vijay Prativadi</p> </footer>
    </div>
</body>
</
html>

Step 2 : The Output of the Application looks like this:

detailstag.gif

I hope this blog is useful for you. I look forward for your comments and feedback. Thanks Vijay Prativadi..
share this blog :
post comment