320302 Databases & WebServices (P. Baumann)
The World Wide Web
www.w3schools.com www.webdesign.com …
Really everybody can design an own website
The World Wide Web www.w3schools.com www.webdesign.com Really - - PowerPoint PPT Presentation
The World Wide Web www.w3schools.com www.webdesign.com Really everybody can design an own website 320302 Databases & WebServices (P. Baumann) Overview Internet / Web Concepts Three-tier architectures Presentation layer
320302 Databases & WebServices (P. Baumann)
Really everybody can design an own website
340151 Big Databases & Cloud Services (P. Baumann) 2
340151 Big Databases & Cloud Services (P. Baumann) 3
Incas use Quipu
idea of linking together microfiche published by Vannevar Bush
fault-tolerant, heterogeneous WAN (cold war!) term "Hypertext" coined by Ted Nelson at ACM 20th National Conference
Queen Elizabeth sends her first email. She's the first state leader to do so.
Berners-Lee at CERN writes notebook program to link arbitrary nodes
Berners-Lee makes a proposal on information management at CERN
Berners-Lee’s boss approves purchase of a NeXT cube Berners-Lee begins hypertext GUI browser+editor and dubs it "WorldWideWeb" First web server developed
340151 Big Databases & Cloud Services (P. Baumann) 4
340151 Big Databases & Cloud Services (P. Baumann) 5
Incas use Quipu
idea of linking together microfiche published by Vannevar Bush
fault-tolerant, heterogeneous WAN (cold war!) term "Hypertext" coined by Ted Nelson at ACM 20th National Conference
Queen Elizabeth sends her first email. She's the first state leader to do so.
Berners-Lee at CERN writes notebook program to link arbitrary nodes
Berners-Lee makes a proposal on information management at CERN
Berners-Lee’s boss approves purchase of a NeXT cube Berners-Lee begins hypertext GUI browser+editor and dubs it "WorldWideWeb" First web server developed
Mosaic: easy to install, great support, first inline images (“much sexier”) Andreessen & colleagues leave NCSA to form “Mosaic Comm. Corp”; later "Netscape"
340151 Big Databases & Cloud Services (P. Baumann) 6
telnet, ftp, ..., http (application layer) TCP (transport layer) IP (network layer)
[wikipedia]
340151 Big Databases & Cloud Services (P. Baumann) 7
340151 Big Databases & Cloud Services (P. Baumann) 8
340151 Big Databases & Cloud Services (P. Baumann) 10
need browser plug-in or helper application
340151 Big Databases & Cloud Services (P. Baumann) 11
HTTP/1.1 200 OK Last-Modified: Mon, 01 Mar 2002 09:23:24 GMT Content-Length: 1024 Content-Type: text/html
<html>…</html>
340151 Big Databases & Cloud Services (P. Baumann) 13
340151 Big Databases & Cloud Services (P. Baumann) 14
usually start and end tag:
<h1><em>my</em> text</h1> <h1 align="center">headline</h1>
340151 Big Databases & Cloud Services (P. Baumann) 15
<a name="top"> <title>My first HTML document</title> <h1>An important heading</h1> <h2>A slightly less important heading</h2> <p>This is the <em>first</em> paragraph.</p> <img src="peter.jpg" width="150" height="200" alt="me"> My link list: <ul> <li>This is a link to <a href="http://www.w3.org/">W3C</a> <li>This a link to <a href="peter.html">Peter's page</a> <li>Go to <a href="#top">top</a> <li><a href="/"><img src="logo.gif" alt="home page"></a> </ul>
340151 Big Databases & Cloud Services (P. Baumann) 16
<a name="top"> <title>My first HTML document</title> <h1>An important heading</h1> <h2>A slightly less important heading</h2> <p>This is the <em>first</em> paragraph.</p> <img src="peter.jpg" width="150" height="200" alt="me"> My link list: <ul> <li>This is a link to <a href="http://www.w3.org/">W3C</a> <li>This a link to <a href="peter.html">Peter's page</a> <li>Go to <a href="#top">top</a> <li><a href="/"><img src="logo.gif" alt="home page"></a> </ul>
340151 Big Databases & Cloud Services (P. Baumann) 17
<table> <tr> <th>Year</th> <th>Sales</th> </tr> <tr> <td>2000</td> <td>$18M</td> </tr> <tr> <td>2001</td> <td>$25M</td> </tr> <tr> <td>2002</td> <td>$36M</td> </tr> </table>
340151 Big Databases & Cloud Services (P. Baumann) 18
body { font-family: Arial,sans-serif; } a:link { color: red; } .special { color: green; font-size: large; } <link rel=“style sheet” type=“text/css” href=“books.css”> <html> <body> <h1>Title in Arial, but bold</h1> <div id=“special”>I am different</div> <a href=“#somewhere”>link in red</a> </body> </html>
340151 Big Databases & Cloud Services (P. Baumann) 19