-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (49 loc) · 1.66 KB
/
Copy pathindex.html
File metadata and controls
56 lines (49 loc) · 1.66 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
<!DOCTYPE html>
<html ng-app="app" ng-init="subs=['Data structures','Algorithms']">
<head>
<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="">
<meta name="author" content="">
<script src="js/angular.min.js"></script>
<!-- Bootstrap Core CSS -->
<title>Mangalashri</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/mysite.css" rel="stylesheet">
<link rel="shortcut icon" href="images/mypic.jpg" >
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!--Load Bootstrap css-->
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet">
<!--load font awesome-->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div>
<div ng-include="'partials/navigation.html'">
</div>
<div ng-include="'partials/carousel.html'">
</div>
<div ng-include="'partials/about.html'">
</div>
<div ng-include="'partials/edu.html'">
</div>
<div ng-include="'partials/contact.html'">
</div>
<hr>
<div ng-include="'partials/footer.html'">
</div>
</div>
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Script to Activate the Carousel -->
<script>
$('#carousel').carousel();
</script>
</body>
<script src="app/app.js"></script>
</html>