forked from harsh250895/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage1.html
More file actions
74 lines (63 loc) · 3.61 KB
/
package1.html
File metadata and controls
74 lines (63 loc) · 3.61 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html><!-- html5 doctype declaration-->
<html class="no-js" lang="">
<!-- "no-js"class is provided in order to allow more easy and explicit adding of custom styles based on whether JavaScript is disabled (.no-js) or enabled (.js).-->
<!-- lang="" specifies language of the content by adding the lang attribute-->
<head> <!-- header-->
<meta charset="utf-8"><!-- charset should be declared within the first 512MB of the html code in order to prevent maliscious code and hijacking-->
<meta http-equiv="x-ua-compatible" content="ie=edge"><!-- ensure the latest rendering engine version of IE (Internet Exploder) is being used-->
<title>ARPANET</title>
<meta name="description" content=""><!-- provides a description of the content-->
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- sends a message to the browser to render as a mobile site -->
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css"><!-- enables browsers to render all elements more consistently and in line with modern standards. -->
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script><!-- Modernizr helps older browsers handle HTML5 elements -->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]--><!-- checks the version of the browser and if outdated sends a message to the user to update the browser-->
<!-- Add your site or application content here -->
<div id="wrapper">
<div id ="header">
<div id="logo">
<a href="index.html"><h2>History</h2></a>
</div>
<div id="menu">
<ul>
<li> <a href="about.html">About</a> </li>
<li> <a href="index.html">Home</a> </li>
</ul>
</div>
</div>
<div id="feature">
<h3>ARPANET</h3><br>
<h4>Established October 29, 1969 </h4>
<ol>
<h3> The first-ever computer to computer link was established on the
ARPANET. ARPA which stands for Advanced Research Projects Agency,
funded the ARPANET within the United States Department of Defense. It
was to be used for projects at universities and research laboratories
in the US.
The ARPANET initially consisted of four IMPs(Interface Message
Processor) at four different locations. The first message was sent by
a UCLA student programmer at 10:30pm on October 29.
</h3>
</div>
<div id="footer"><h4>2016 Get Smart Inc.</h4></div>
</div>
<!-- Local Jquery is included in order to facilitate offline development -->
<script src="https://code.jquery.com/jquery-{{JQUERY_VERSION}}.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-{{JQUERY_VERSION}}.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<!-- an optimized version of the Google Universal Analytics tracking code is included-->
<script>
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
ga('create','UA-86088603-1','auto');ga('send','pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async defer></script>
</body>
</html>