-
Notifications
You must be signed in to change notification settings - Fork 0
/
webbrowsers.html
80 lines (80 loc) · 4.86 KB
/
webbrowsers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE HTML>
<html lang="en">
<head>
<title> History of the Internet</title>
<link rel="stylesheet" type="text/css" href="webbrowsers.css" />
<link rel="shortcut icon" type="image/x-icon" href="hoti.ico"> <!-- change tab icon -->
</head>
<body>
<div id="main">
<div id="header" >
<img src="hoti.jpg"/>
</div>
<div>
<nav id="droptab">
<ul>
<li class="dropdown"><a href="index.html">Home</a></li> <!-- adds a link back to the home page -->
<li><a href="#">Events</a>
<ul> <!-- used to make a drop down tab from the main tab bar, works really well for this page -->
<li><a href="arpanet.html">ARPANET</a></li>
<li><a href="ip.html">TCP/IP</a></li>
<li><a href="filesharing.html">File Sharing</a></li>
<li><a href="socialnetworking.html">Social Networking</a></li>
<li><a href="webbrowsers.html">Web Browsers</a></li>
</ul>
</li>
<li><a href="w3c.html">W3C</a></li>
<li><a href="internet.html">The Internet?</a></li>
<li><a href="glossary.html">Glossary</a></li>
<li><a href="references.html">References</a></li>
</ul>
</nav>
</div>
<div> <!-- Information div -->
<div id="info">
<h2> Web Browsers</h2> <!-- Intro -->
<p> The first graphical web server was created by Berners-Lee in 1991. To avoid confusion with www it was renamed from the original name WorldWideWeb to Nexus. Nexus was used mainly for web browsing but could also help create web pages.
<br> <br> <b> Check out the Nexus Browser in action in this video </b> </p>
<iframe src="https://www.youtube.com/embed/3c3Rt6QbHDw" frameborder="0" allowfullscreen></iframe>
</div>
<div id="info2"> <!-- Mosaic -->
<p> By 1993 Mosaic was released. This was the first web browser to be accessed by the public and is well known to have made the internet more popular to the everyday person. Mosaic still sets the building blocks for today's web browsers, Internet Explorer, Firefox etc. that continue to use a similar GUI. </p>
<img src="mosaic.jpg"/>
</div>
<div id="info3"> <!-- Netscape -->
<p> In 1994 Netscape was created by Marc Andreessen. Marc Andreessen, helped create Mosaic, went solo and crated Netscape. Netscape Navigator was the first commercial web browser available worldwide.</p>
<img src="netscape.png"/>
</div>
<div id="info4"> <!-- Internet Explorer image -->
<p> </p>
<img src="ie.png"/>
</div>
<div id="info5"> <!-- Internet Explorer info -->
<p> By 1995 Microsoft had released their own web browser, Internet Explorer (IE). By the following year Internet Explorer had only a 10% market share, whilst Netscape had the other 90%. In 1996 Opera was created by a Norwegian telecommunications company and was released to the public.</p>
</div>
<div id="info6"> <!-- Firefox -->
<p> 1998 saw the creation of Mozilla Firefox. Firefox was an open source project created by Netscape and was used to develop the future of web browsers. Whilst it wasn't released until 2004 Netscape Navigator was made open source because Internet Explorer had such a great market share. </p>
<img src="firefox.png"/>
</div>
<div id="info7"> <!-- Safari -->
<p> By 2002 Internet Explorer held 95% of the market share. This was helped by being bundled with the Windows operating system. <br> <br>
In 2003 apple releases Safari web browser. The basis of Safari has been used by Google and Nokia for their mobile devices.</p>
<img src="safari.png"/>
</div>
<div id="info8"> <!-- Firefox vs IE-->
<p> 1998 saw the creation of Mozilla Firefox. Firefox was an open source project created by Netscape and was used to develop the future of web browsers. Whilst it wasn't released until 2004 Netscape Navigator was made open source because Internet Explorer had such a great market share. </p>
<img src="ievsff.png"/>
</div>
<div id="info9"> <!-- Google Chrome -->
<p> 2008 sees Google release its own web browser, Google Chrome. Chrome was made to be lightweight, fast and clean. Chrome was a strong competitor against IE because of its lightweight look and its speed improvement on IE.</p>
<img src="chrome.png"/>
</div>
<div id="info10"> <!-- Spartan Project-->
<p> Just recently in March 2015 Microsoft announced that it would be shutting down Internet Explorer as it was not as popular. Microsoft has learned that bringing out new versions of Internet Explorer does not excite an audience. By removing Internet Explorer Microsoft is making way for their new Windows 10 web browser that goes by the name of the Spartan Project. <br> <br>
<b> Learn more about the Spartan Project </b></p>
<script height="200px" width="35%" src="http://player.ooyala.com/iframe.js#ec=JtZ2F3cjpDfLyyv1SWWFxSbcxqnnm8aY&pbid=dcc84e41db014454b08662a766057e2b"></script>
</div>
</div>
</div>
</body>
</html>