blob: 43a4f0e6688e0eb04cfb33301723262efe22e706 (
plain)
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
88
89
|
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<title>Apps, by FOSSEE</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="apps by fossee" name="description">
<meta content="Parth Buch" name="author">
<!-- Le styles -->
<link rel="stylesheet" href="static/css/bootstrap.min.css">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
</style>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a data-target=".nav-collapse" data-toggle="collapse" class="btn btn-navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a href="#" class="brand">FOSSEE Apps</a>
<div class="nav-collapse">
<ul class="nav pull-right">
<li class="active"><a href="http://www.fosseeapps.in" title="home">Home</a></li>
<li><a href="http://www.fosseeapps.in/stproject" title="stapp" target="_blank">STApp</a></li>
<li><a href="http://www.fosseeapps.in/PyTask" title="pytask" target="_blank">PyTask</a></li>
<li><a href="http://www.fosseeapps.in/online_test" title="online test" target="_blank">Online Test</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>Welcome to FOSSEE Apps</h1>
<p>This website hosts the Projects made by <a href="http://www.fossee.in" title="fossee" target="_blank">FOSSEE</a>. Click on the links below to view the apps.</p>
</div>
<!-- Example row of columns -->
<div class="row">
<div class="span4">
<h2>STApp</h2>
<p></p>
<p><a href="http://www.fosseeapps.in/stproject" target="_blank" class="btn">View App »</a></p>
</div>
<div class="span4">
<h2>PyTask</h2>
<p></p>
<p><a href="http://www.fosseeapps.in/pytask" target="_blank" class="btn">View App »</a></p>
</div>
<div class="span4">
<h2>Online Test</h2>
<p></p>
<p><a href="http://www.fosseeapps.in/online_test" target="_blank"class="btn">View App »</a></p>
</div>
</div>
<hr>
<footer>
<p>© FOSSEE 2012</p>
</footer>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="../static/js/bootstrap.min.js"></script>
</body></html>
|