-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·45 lines (40 loc) · 1.74 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Susa Open Source Project</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Behrooz Kamary"/>
<link rel="stylesheet" href="css/normalize.min.css" type="text/css"/>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Droid+Serif:regular,italic,bold,bolditalic" type="text/css" />
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold" type="text/css" />
<script src="js/jquery-3.5.1.min.js" type="text/javascript"></script>
<script src="js/manage.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/style.css" type="text/css"/>
</head>
<body>
<header>
<img src="img/navbar-logo.png" id="logo"/>
<button>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<nav>
<ul>
<li><a id="main" href="#main" onclick="load('main');return false;">Home</a></li>
<li><a id="download" href="#download" onclick="load('download');return false;">Download</a></li>
<li><a id="examples" href="#examples" onclick="load('examples');return false;">Examples</a></li>
<li><a id="news" href="#news" onclick="load('news');return false;">News</a></li>
<li><a href="https://github.com/libsusa/susa" target="_blank"><img src="img/github.png" id="github"/>GitHub</a></li>
</ul>
</nav>
</header>
<article id="article"></article>
<footer>
<span>© 2008 — 2024 Susa Open Source Project</span>
</footer>
</body>
</html>