-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.64 KB
/
Copy pathindex.html
File metadata and controls
55 lines (55 loc) · 2.64 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
<!DOCTYPE html>
<!--
NaikSoftware.github.io project
@author Naik
-->
<html>
<head>
<title>NaikSoftware Projects</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/main.css" rel="stylesheet" media="screen">
<script src="js/jquery/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</head>
<body class="container default_body_style">
<nav class="navbar navbar-static-top" id="navbar" role="navigation">
<div class="container-fluid">
<div class="nav navbar-nav navbar-left">
<span class="large-size navbar-link navbar-text">NaikSoftware Projects</span>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-btn navbar-right">
<li>
<img alt="NaikSoftware" src="https://avatars0.githubusercontent.com/u/4218994?v=3&s=48"/>
</li>
</ul>
</div>
</div>
</nav>
<div class="panel panel-default">
<div class="panel-body">
<div class="list-group">
<a class="list-group-item" href="quine-calculator-online.html">
<h4 class="list-group-item-heading">Quine Calculator online</h4>
<p class="list-group-item-text">Solves partially and fully defined Boolean functions by Quine - McCluskey</p>
</a>
<a class="list-group-item" href="historysniffer.html">
<h4 class="list-group-item-heading">JS History Sniffer</h4>
<p class="list-group-item-text">Determination visited resources (only works when you first start, the following will be determined wrong)</p>
</a>
<a class="list-group-item" href="content/simpletanks_javadocs/">
<h4 class="list-group-item-heading">SimpleTanks JavaDocs</h4>
<p class="list-group-item-text">Simple game with multiplayer via LAN (Android)</p>
</a>
<a class="list-group-item" href="svg.html">
<h4 class="list-group-item-heading">SVG Path Tester</h4>
<p class="list-group-item-text">Testing SVG path HTML tag</p>
</a>
</div>
</div>
</div>
</body>
</html>