-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
87 lines (63 loc) · 3.89 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
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
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags help describe your web page to search engines so people can find it more easily -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<!-- Facebook's open graph works similarly and helps Facebook to pull images and a description right into your Facebook posts. See also https://developers.facebook.com/docs/sharing/webmasters#markup -->
<meta property="og:title" content="">
<meta property="og:site_name" content="">
<meta property="og:url" content="">
<meta property="og:type" content="website">
<meta property="og:description" content="">
<meta property="og:image" content="">
<!-- Twitter cards work similiarly to Facebook's open graph tags; they pull images and a description right into tweets that link to this page. See also https://dev.twitter.com/cards/overview -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="">
<meta name="twitter:creator" content="">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="">
<meta name="twitter:image:src" content="">
<!-- Setting the above meta tags including Facebook and Twitter can help more people find and share your content. -->
<!-- The title appears on the tab in your browser -->
<title> </title>
<!-- Favicons are the tiny icons that appear on the tab in your browser. You can create a Favicon at http://www.favicon.cc/ -->
<link rel="icon" href="">
<!-- Bootstrap, a framework that helps you develop with responsive design / mobile-first. See also http://getbootstrap.com/ -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- This boilerplate is for compatibility with older browsers -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Font Awesome is a free scalable icon set you can use. See icons at http://fortawesome.github.io/Font-Awesome/icons/ -->
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Add your own fonts here from Google Fonts: http://www.google.com/fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!-- Include any CSS files here -->
<!-- Google Analytics Code, add your snippets below. Sign up / get your snippet at http://www.google.com/analytics/ -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'PUT-YOUR-CODE-HERE', 'PUT-YOUR-WEBSITE-HERE');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- Anchors like this let you link to different sections of your page without leaving the page itself. -->
<a name="top"></a>
<div class="container-fluid">
<!-- Start editing! Your content goes below -->
<!-- End editing! Your content goes above -->
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</body>
</html>