forked from harsh250895/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
61 lines (54 loc) · 3.08 KB
/
about.html
File metadata and controls
61 lines (54 loc) · 3.08 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
<!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>Get Smart</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="index.html">Home</a>
</li>
</ul>
</div>
</div>
<div id="feature">
<h2>This Webpage is dedicated to the learning and understanding of
the History of the Internet</h2>
</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>