Thursday, August 21, 2025


Sample Privacy Policy for Hotel POS App


Effective Date: 21 Aug 2025 

App Name: Hotel POS


1. Introduction

This privacy policy explains how we collect, use, and protect user data in our Hotel POS and Billing Management System app. We are committed to maintaining the privacy and security of the information users provide.


2. Data We Collect

We collect the following data only when entered by the user:

  • Name
  • Mobile Number

This data is entered manually by users and may include placeholder, dummy, or inaccurate information depending on user input. We do not verify or validate the accuracy of this data.


3. Purpose of Data Collection

The data is used solely for:

  • Generating bills and invoices
  • Managing customer records within the app
  • We do not use this data for marketing, analytics, or sharing with third parties.


4. Data Storage & Security

All data is stored locally on the user's device or within secure app databases. We implement basic security measures to prevent unauthorized access, but users are responsible for the accuracy and sensitivity of the data they input.


5. Data Sharing

We do not share user data with any third-party services, advertisers, or external platforms.


6. User Control

Users can:

  • Choose what data to enter
  • Delete or modify customer records at any time
  • Uninstall the app to remove all locally stored data


7. Children’s Privacy

This app is not intended for use by children under the age of 18. We do not knowingly collect personal data from children.


8. Changes to This Policy

We may update this policy from time to time. Users will be notified of significant changes via app updates or notices within the app.

 

Thursday, May 17, 2018

Introduction 

- HTML is the standard hyper text markup language. 
- HTML, ML means markup language. 
- Markup language means, its represented by tags. 
- HTML is markup language so its elements are represented by tags. 
- Basically use for creating Web pages. 

Sample HTML Document Structure 

<!DOCTYPE html> this tag defines web page to be HTML5 or not.
<html> root tag of HTML web page.
<head> this tag contains meta information about the web page.
<title> this tag define a title for web page.
<body> this tag contains actual visible page content for web page.

<!DOCTYPE html>
<html>
    <head>
        <title>Title Of Web Page</title>
    </head>
    <body>
         This is sample html web page.
    </body>
</html>

- HTML tags enclosed by triangular bracket <>
- The first tag in a pair is the start tag, the second tag is the end tag.
- The end tag is written like the start tag, but with a forward slash inserted before the tag name.
 Ex. <body> first tag & </body> end tag.



Different HTML version are 

HTML 
HTML 2.0 
HTML 3.2 
HTML 4.01 
XHTML 
HTML5 

We will see features of all versions later post.