-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.html
More file actions
54 lines (54 loc) · 3.09 KB
/
references.html
File metadata and controls
54 lines (54 loc) · 3.09 KB
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title> History of thè Internet </title> <!-- adds cool accented e-->
<link rel="stylesheet" type="text/css" href="references.css" /> <!-- let the html find the .css file -->
<link rel="shortcut icon" type="image/x-icon" href="hoti.png"> <!-- change tab icon -->
</head>
<body>
<div id="main">
<div id="header" >
<img src="hoti.jpg" id="image01" /> <!-- haeder image with id to allow css to adjust how it is viewed -->
</div>
<nav id="droptab">
<ul> <!-- tab links on the top of the page -->
<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>
<nav id="paragraph">
<h2> References </h2>
<a href="http://sixrevisions.com/resources/the-history-of-the-internet-in-a-nutshell/" target="_blank"> The History of the Internet in a Nutshell </a>
<p> Chapman, Cameron, The History of the Internet in a Nutshell, Six Revisions, published 15/11/09, viewed 11/03/15 </p>
<a href="http://www.factmonster.com/ipka/A0193167.html " target="_blank"> Internet Timeline </a>
<p> Fact Monster, Internet Timeline, viewed 11/03/15 </p>
<a href="http://searchnetworking.techtarget.com/definition/ARPANET " target="_blank"> ARPANET Definition</a>
<p> Rouse, Margaret, ARPANET Definition, Search Networking, published ??/05/08, viewed 12/03/15 </p>
<a href="http://www.digitaltrends.com/features/the-history-of-social-networking/" target="_blank"> History of Social Networking</a>
<p> Digital Trends, THE HISTORY OF SOCIAL NETWORKING, published 5/08.14, viewed 12/03/15 </p>
<a href="http://www.livinginternet.com/w/wi_browse.htm " target="_blank"> Web Browser History </a>
<p> Living Internet, Web Browser History, viewed 11/03/15 </p>
<a href="http://sixrevisions.com/web-development/the-history-of-web-browsers/" target="_blank"> The History of Web Browsers</a>
<p> Gube, Jacob, The History of Web Browsers, published 30/09/08, viewed 14/03/15 </p>
<a href="https://torrentfreak.com/the-history-of-filesharing-120422/" target="_blank"> History of File Sharing</a>
<p> Torrent Freak, History of File Sharing, published 22/04/12, viewed 16/03/15 </p>
<a href="http://www.internetsafety101.org/glossaryofterms.htm" target="_blank"> Glossary of Terms</a>
<p> Internet Safety 101, Glossary of Terms, viewed 11/03/15 </p>
</nav>
</div>
</div>
</body>
</html>