Skip to main content

What legal information should every website have publicly reachable by its cutomers

we all come to the point in our lives where we should make our own website or hire someone to do that for us, but you may notice that most of the website you visit/ed have a lot of things in common, Like legal information.
Photo by Ilya Pavlov on Unsplash


every professional website should have pages like:
  • privacy policy  
read this article on life wire for more info
  • copyright notices
for more info click here
  • terms and conditions of use
this is blog conditions of use on life wire
  • disclaimers
how to make a blog disclaimer
  • accessibility information
link 
  • abuse or complaints contact information
  • trademarks
  • patents
  • corporate policies 
disclaimer: the links in this post were not sponsored by any means

Comments

Popular posts from this blog

Udacity Machine learning intro| lesson two solutions

Do you think a horse is acerouse or non-acerouse: A: non-acerouse supervised classification examples: A1: form an album of tagged photos, recognize someone in a picture + A2: given someone's music choices and a bunch of features of that music(tempo, genre, etc) recommend a new song features  visualization: A: she likes those classification by eye: A: unclear speed scatterplot: Grade and bumpiness: A: smooth, flat speed scaterplot 2: A: medium, very steep speed scaterplot 3: A: bad flat from scatterplot to predictions: A: more like this   from scatterplot to predictions 2: A: unclear from scatterplot to decision surfaces: A:Red cross A good linear decision surface: A: the line that is going between the blue and red GussianNB Deployment on terrain data: select the GussianNb.py file(this one will be a bit tricky) and past this under the defined function:     clf = GaussianNB()     clf.fit(features_train, labels_tr...

Introduction | HTML

you've probably heard or somehow know about HTML it's the most popular markup language, its use is a most for any start up/professional project/company because they will always need to somehow share their services or their thoughts on the web on their own platform where they almost full control over it so they start looking for web developers like you(maybe?) to design and maintain the look and the feel of it and have better customer reactions. Photo by Sai Kiran Anagani on Unsplash while the web is going crazy right now as usual I'll try to somehow teach you the very basics of web development. let's start, shall we? Next

Understanding the requirements | HTML

without any intros let's get started: requirements: a text editor a list of the text editors i've used a small knowledge of how computers work and communicate with each other Photo by Artem Sapegin on Unsplash so to keep things organized in your pc create a new folder anywhere you like and after that create a blank text file open that text with your favorite text editor and type this code: <!DOCTYPE html> <html> <head> <title>this is the title of your website</title> </head> <body> <h1>this is a heading</h1> <p>this is a paragraph</p> </body>  </html> after that, look at the top of your text editor and go to file and then choose save as the only thing you need to understand here is that usually people name these html files as 'index' and the extension of that file is html which means the file's name should look something like this "index.htm...