-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.36 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Markov Chains in WebAssembly</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">Markov Chains</h1>
<p class="subtitle">Implemented with WebAssembly and Rust</p>
<div class="field">
<label class="label">Input Text</label>
<div class="control">
<textarea id="text-input" class="textarea" placeholder="I would really like to travel the world. I really like reeses but I do not really like almond joys."></textarea>
</div>
</div>
<div class="field">
<div class="control">
<button id="submit" class="button is-primary">Generate A Sentence</button>
</div>
</div>
<article class="message">
<div id="sentence" class="message-body">
Your sentence will appear here!
</div>
</article>
</div>
</section>
<script src='bootstrap.js'></script>
</body>
</html>