-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.99 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>History of thè Internet</title>
<!-- adds cool accented e-->
<link rel="stylesheet" type="text/css" href="style.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>Welcome to History of the Internet</h2>
<p>
This site will inform you of the great things technology and the internet has given the world. From the beginning of the first use of the ARPANET to
the more recent use of file sharing this website will teach you all you need to know about the history of the internet.
</p>
<div><img src="internet.jpg" /></div>
</nav>
</div>
</div>
</body>
</html>