picture of Tim Berners proposal concening the management of general information about accelerators and experiments at CERN. It discusses the problems of loss of information about complex evolving systems and derives a solution based on a distributed hypertext system
multiple clients can connect to server(s) - this is what makes up the internet.
The largest WAN in existence is the Internet.
He did not invent the internet, but gave provided context and usability for the Internet. The fact that the Internet and the World Wide Web are synonymous is many users' minds is a testament to the success of the hypertext approach.
A web page is a simple text file written in HTML (Hypertext Markup Language) A markup language is a language that describes the content and structure of a document by "marking up" or tagging, different document elements.
An HTML tag includes an opening bracket (<), an element name such as h1, and a closing bracket.
The end tag has a slash ( / ) preceding the element.
<h1 id="honorable"> Those who speak truth </h1>
Element attributes provide additional information to the browser about the purpose of the element
HTML5 has less attributes because of CSS
Most empty or void elements require attributes
<a href="fax:1-408-555-5555">1-408-555-5555</a>
<a href="file:pdf/homework.pdf">homework.pdf</a>
<a href="ftp://someftpserver.com/">Browse the FTP server</a>
<a href="geo:44.9727845,-93.2923222">Map Dunwoody</a>
<a href="https://reacttees.com">Reactttees.com</a>
<a href="mailto:someone@dunwoody.edu?Subject=HTML">Send mail</a>
<!DOCTYPE html>
<html>
<head>
<title>Basic Structure </title>
</head>
<body>
<header>
</header>
<footer>
</footer>
</body>
</html>