-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial.html
79 lines (68 loc) · 2.66 KB
/
tutorial.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Prabhat Subedi - Java Developer</title>
<meta charset="UTF-8">
<!-- mobile Specefic meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media.css">
<link rel="shortcut icon" href="images/prabhat.ico">
<!-- Font -->
<!--<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Ends Font -->
</head>
<body>
<!-- Wrap all page content here -->
<div id="wrap">
<!-- Fixed navbar -->
<div id="fixed-nav" class="navbar navbar-fixed-top top">
</div>
<!-- Begin page content -->
<div class="container">
<div class="content">
<div class="info">
<div class="info-column">
<h2>Java</h2>
<p><a href="tutorials/Java_BIM.pptx">Java BIM</a></p>
<p><a href="tutorials/Java - CSIT.pptx">Advanced Java - CSIT</a></p>
<p><a href="tutorials/Java.pptx">Java 8 Features</a></p>
</div>
<div class="info-column">
<h2>E - Book</h2>
<p><a href="ebook/Core Java Volume I- Fundamentals 9th Edition- Horstmann, Cay S. & Cornell, Gary.epub">Core Java Volume I- Fundamentals 9th Edition- Horstmann, Cay S. & Cornell, Gary.epub</a></p>
<p><a href="ebook/Core Java Volume II- Avanced Features 9th Edition - Horstmann, Cay S. & Cornell, Gary.epub">Core Java Volume II- Avanced Features 9th Edition - Horstmann, Cay S. & Cornell, Gary.epub</a></p>
<p><a href="ebook/Java The Complete Reference, 8th Edition.rar">Java The Complete Reference, 8th Edition</a></p>
</div>
<div class="info-column">
<h2>Questions</h2>
<p><a href="tutorials/Java.docx">Advanced Java - CAB</a></p>
</div>
<div class="info-column">
<h2>Projects</h2>
<p><a href="tutorials/CIT239-SU_Project2_20141019.pdf">Credit Card Verification Application</a></p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<p class="text-muted credit" id="footer-text"></p>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/custom.js"></script>
<script>
$(function(){
$("#fixed-nav").load("header.html", function(){
highlightCurrentPage('tutorial');
});
});
</script>
</body>
</html>