Posts

Metaverse

 Neal Stephenson coined term metaverse in 1992 in his science fiction novel ' Snow Crash ' in which he envisioned lifelike avatars who met in realistic 3D buildings and other virtual reality environments. It's a combination of multiple elements of technology, including virtual reality, augmented reality and video where users "live" within a digital universe. Supporters of the metaverse envision its users working, playing and staying connected with friends through everything from concerts and conferences to virtual trips around to the world. Mark Zuckerberg, the CEO of the newly named Meta (formerly Facebook),  estimates  it could take five to 10 years before the key features of the metaverse become mainstream. But aspects of the metaverse currently exist. Ultra-fast broadband speeds, virtual reality headsets and persistent always-on online worlds are already up and running, even though they may not be accessible to all. The software giant already uses holograms an...

Why is Web 3.0 significant?

Intro on short : The third iteration of the Web, in a nutshell, aims to put more control over web content in its users' hands. With Web 3.0, you won't need an account for each social platform--with just one account, you could seamlessly move between platforms, browse for information, or even shop. Is it significant? The next internet revolution is in the works and aims to put more control over web content in the hands of its users. Web 3.0, which will be built on blockchain --the technology underlying bitcoin and other cryptocurrencies--aims to eliminate all big intermediaries, including centralized governing bodies or repositories. Put simply, with Web 3.0, you won't need an account for each social platform. With just one account, you could seamlessly move between different social platforms, browse the internet for information, or even shop. Web 1.0, or the first phase of the World Wide Web, started in the 1990's when the dotcom boom enabled easy access to information....

Intro on WEB 3.0

Image
  A Brief Introduction on WEB 3.0 Lets start with the term Web. Web refers to the global network of servers that makes the information sharing that happens over the Web possible.   So far, we reached to the 3rd generation of web. Just on starting phase of web 3.0, web 1.0 is when the WWW introduced to till 2004 and later web 2.0 introduced. Still many websites are based on web 2.0. Web 1.0 Web 1.0  refers to the first stage of the world wide web (www) evolution. Earlier, there were only a few content creators in web 1.0 with huge majority of users who are consumers of content. Web 1.0 is a content delivery network (CDN) that enables the showcase of the piece of information on the websites i.e mostly read-only. It can be used as a personal website. Web 1.0 is static pages. Web 2.0 Web 2.0 refers to worldwide websites which highlight user-generated content, usability and interoperability for end users. Social media's website are based on web 2.0. It doesn't refer to a ...

making a beautiful website as same as an "apple.com"

Image
Using HTML, CSS, and public-domain images, we are recreating apple's homepage from scratch. Writing all in the HTML and the CSS ourselves.  <!DOCTYPE html> <html> <head> <meta charset="utf-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>apple</title> <style> body { margin: 0; font-family: Arial, Helvetica, sans-serif; } img { width: 100%; } .navbar { overflow: hidden; background-color: black; position: fixed; top: 0; width: 100%; height: 45px; line-height: 44px; text-align: center; } .navbar a { float: left; display: block; color: grey; text-align: center; text-decoration: none; margin: 0px 40px; justify-content: center; } .navbar a img { text-align: center; margin-top: 7px; } .navbar a:hover { background: black; color: white; ...

How to make a beautiful website (II) ?

Image
We have done only on HTML 5 so far. After this, we move on CSS as well. Lets see, how my project looks like. <!DOCTYPE html> <html> <head>   <meta charset="utf-8">   <meta name="description" content="HTML project">   <meta name="keywords" content="HTML, learn HTML">   <meta name="author" content="Romanch Jung Rayamajhi">   <meta name="viewport" content="width=device-width, initial-scale=1.0">   <title>Rich dad poor dad</title> </head> <body bgcolor="skyblue">   <!--you can click image to see large from its original location-->  <!-- The <area> tag defines an area inside an image-map (an image-map is an image with clickable areas). <area> elements are always nested inside a <map> tag.-->   <img src="https://images-na.ssl-images-amazon.com/images/I/91VokXkn8hL...

How to make a beautiful website?

Image
At first, what do you know about the website? And I am sure that at least once, you heard this. If you know already, then that's good. Let's begin, basically, the website is the collection of the webpage. Then what is a webpage, ahh again what is this! A  web page  or  webpage  is a document, commonly written in HTML , that is viewed in an Internet browser . A web page can be accessed by entering a URL  address into a browser's address bar . A web page may contain text, graphics, and hyperlinks  to other web pages and files. Again what is  HTML? Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. I prefer you guys to use a text editor such as Sublime or Note Pad ++. I wrote basic HTML codes making listing and commenting on favorite foo...