Use this space to put some text. Update this text in HTML

468x60 banner ad

Advertise with Us

Powered by Blogger.

Saturday 2 April 2016

Notability and Dropbox How to Exporting Notes



Exporting Notability documents to Dropbox:



Steps 1 and 2: From Notability main page (where your folders and documents are listed), click the small box with the arrow coming out of it. Clicking it will prompt you to choose a note for sharing. Simply tap on a document and a small checkmark will appear.



Steps 3 and 4: Now that you have got a document ready to export, click the arrow again, and a drop-down menu will appear. Look at all the places you can send your document. Click Dropbox.



Step 5: Another drop-down menu will appear, displaying your very own Dropbox folders! Click on the folder of your choice, which will prompt you to select a file format(in pdf, doc etc.) in which to save your Notability document.

Select PDF and then tape PDF



Thursday 31 March 2016

HTML Footer Tag

HTML <footer> Tag

The HTML <footer> tag is used for defining the footer of an HTML Page or web page on below of the page.

Footers usually contain information about the author of the document, copyright information, links to terms of use, privacy policy, etc.

Contact information within a <footer> tag should marked up using the <address> tag.

Footers are generally located at the bottom of a document.

A page or document/section can have more than one footer.
The <footer> tag was introduced in HTML.

FooterPage.html  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>HTML Footer Tag</title>
    <style type="text/css">
        footer
        {
            width: 100%;
            background: #336699;
            float: left;
            margin: 0 0 .5% 0;
            border-radius: 10px;
            box-shadow: 5px 5px 10px #202020;
        }
        address
        {
            text-align: center;
            color: #efefef;
            padding: 1% 0;
            text-shadow: 1px 1px 0px #202020;
            font-family: Arial, verdana, tahoma , serif;
            font-size: 16px;
        }
        address a
        {
            color: #ffcc00;
        }
    </style>
</head>
<body>
    <table width="100%">
        <tr>
            <td width="15%">
            </td>
            <td width="70%" height="700px" align="center" valign="top">
                <table width="100%" style="border: 1px Solid Black;">
                    <tr>
                        <td align="center">
                           <img alt="" src="../Images/company-logo-on-header.png" />
                        </td>
                    </tr>
                    <tr>
                        <td height="400px" valign="top">
                          <p style="padding-left:30px;font-family:Calibri; font-size:20px; font-weight:normal; line-height:2px;">
                             It is body where we write content for the page.
                          </p>
                          <p style="padding-left:30px;font-family:Calibri; font-size:20px; font-weight:normal; line-height:2px;">
                             This is the test footer page.
                           </p>
                        </td>
                    </tr>
                    <tr>
                        <td>
                            <footer>
                              <address>
                                 ABC Test Private Ltd. &copy; All Rights Reserved
                                 <br />
                                  <a href="http://www.abctest.com" target="_blank">ABC Test Private Ltd</a>
                                </address>
                             </footer>
                        </td>
                    </tr>
                </table>
            </td>
            <td width="15%">
            </td>
        </tr>
    </table>
</body>
</html>

 Screenshot