Posts

Showing posts with the label #learnwithkbdk

How did an organization archive Internet's History?

Image
The Story of Internet Archive's WayBack Machine Internet Archive is an American Non-Profit Organisation that maintains a digital library of millions of free books, movies, software, music, websites, and more. It was founded in 1996 to give  "Universal Access to all languages and information". They created Wayback Machine to maintain the Digital archive of the  Internet ( W orld  W ide  W eb) Image of the WayBack Machine at https://web.archive.org     WayBack Machine  helps us to travel back in time and allows you to view how websites looked in the past . Since 1996, they had archived over 613 billion web pages*. The purpose of the WayBack Machine is to collect as much content as possible from the Internet that might otherwise be lost when the website's domain changes or is closed down. It helps us to see how the advent of technology has changed our lives on the Internet.      WayBack  Machine allows the user to create a Web c...

Learn Html with Kbdk: How does HTML describe the structure of pages?

Image
To describe the structure of a web page, we add code to the words we want to appear on the page. You can see the HTML code for this page below. Don't worry about what the code means yet. We start to look at it in more detail on the next page.  Note that the HTML code is in blue, and the text you see on the screen is in yellow. <html> <body> <h1> This is the Main Heading </h1> <p> This text might be an introduction to the rest of the page. And if the page is a long one it might be split up into several sub-headings. </p> <h2> This is a Sub-Heading </h2> <p> Many long articles have sub-headings so to help you follow the structure of what is being written. There may even be sub-sub-headings (or lower-level headings). </p> <h2> Another Sub-Heading </h2> <p> Here you can see another sub-heading. </p> </body> </html> The HTML code (in blue) is made ...