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

how to install a small light weight live server on VS code

we all liked this product from microsoft, and if you don't you might consider giving it a chance, and when you sometimes wake up too lazy you just wanna hit few buttons to start working on  your web related project, here's your best bet: first of fire up that shiny VS code that you've installed now go all the way to the left to that rectangle or ctrl+shift+x for short in the searchbar type live server      choose the one you like, for me I choose the one from Ritwick dey install it and you should see something that looks similar to this      read the instructions or just open the html file you want as you usually do, and go all the way down right and click go live. now you're good to go.

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

How to reverse a string in less than four lines of code | javascript

Today I was solving my first algorithm challenge at FreeCodeCamp and I managed to solve from MDN web docs . Here is the script: function reverseString(str) {   var str = str.split('').reverse().join('');   return str; } reverseString("hello"); to preserve non-BMP codepoints mixed with unicode code points (emoji, etc). read here  Link P.S: don't try to do this while your variables are declared as const it won't work :)