-
Notifications
You must be signed in to change notification settings - Fork 0
/
abouttwine.html
40 lines (40 loc) · 1.86 KB
/
abouttwine.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>About Me</title>
<link rel="stylesheet" href="reset.css" type="text/css">
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<header>
<h1>About Twine</h1>
<nav>
<ul>
<li> </li>
<li><a href="index.html">Home</a></li>
<li>|</li>
<li><a href="aboutme.html">About Me</a></li>
<li>|</li>
<li><a href="abouttwine.html">Twine</a></li>
</ul>
</nav>
</header>
<div id="aboutme">
<h2>About Twine</h2>
<img src="img/twine-logo.png" alt="The Twine logo" />
<p>Twine is an open-source tool for telling interactive stories using hypertext. There are many story formats that work with Twine, each influecning how scripting in Twine works. As a relatively newer user of Twine, I started with Harlowe and found its features intuitive yet powerful enough for the types of stories I wanted to tell.</p>
<p>You can read more about Twine on its <a href="http://twinery.org/wiki/twine2:guide" target="_blank" rel="noopener noreferrer">official wiki</a> and Harlowe on its <a href="https://twine2.neocities.org/#introduction_what-harlowe-does-best" target="_blank" rel="noopener noreferrer">official documentation</a>.</p>
</div>
<div class="clear"></div>
<footer>
<nav>
<ul>
<li> </li>
<li>Last updated 04 March 2022.</li>
<li>|</li>
<li><a href="privacy.html">Privacy</a></li>
</nav>
</footer>
</body>
</html>