-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (52 loc) · 2.54 KB
/
index.html
File metadata and controls
65 lines (52 loc) · 2.54 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
<!DOCTYPE html>
<!--
Author : Md. Din Islam
Email : di@dinislambds.com
Web : http://www.dinislambds.com/
Facebook : https://www.facebook.com/mr.di007/
-->
<html>
<head>
<title>Default Project Startup</title>
<meta charset="UTF-8">
<!-- Meta keywords for Search engine -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content=" Type all keywords ">
<meta name="description" content=" Write descriptions ">
<!-- Bootstrap Integration -->
<link href="css/bootstrap-theme.css" rel="stylesheet" type="text/css"/>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css"/>
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<!-- Fonts -->
<!-- Font Awesome -->
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico"/>
<!-- Normalize CSS -->
<link href="css/normalize.css" rel="stylesheet" type="text/css"/>
<link href="css/main.css" rel="stylesheet" type="text/css"/>
<!-- HTML5 Boilerplate JS -->
<script src="js/vendor/modernizr-2.8.3.min.js" type="text/javascript"></script>
</head>
<body>
<div>TODO write content</div>
<!-- HTML 5 Boilerplate JS -->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.0.min.js"><\/script>');</script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<!-- HTML 5 Boilerplate JS -->
<script src="js/plugins.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments);});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='https://www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r);}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>