-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (46 loc) · 1.15 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RAY</title>
<link rel="stylesheet" href="./lib/imports/bootstrap-3.3.6-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./static/css/style.css">
</head>
<body>
<header>
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">RAY</a>
</div>
<ul class="nav navbar-nav">
<li><a href="neural_network.html">Neural network</a></li>
</ul>
</div>
</nav>
</header>
<style>
div.paragrah {
border: 1px solid gray;
padding: 8px;
}
h1 {
text-align: center;
text-transform: uppercase;
color: #4CAF50;
}
p {
text-indent: 25px;
text-align: justify;
letter-spacing: 3px;
}
</style>
</head>
<body>
<div class="paragraph">
<h1>Ray</h1>
<p>A system for creating, training, displaying and testing neural networks fully on the web browser. Currently fully supports MLP (Multilayer Perceptron Networks) and supports partially LSTM (Long Short-Term Memory Networks).
<p>Click on Neural Network to start. </p>
</div>
</body>
</html>