-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWelcome.htm
47 lines (41 loc) · 1.65 KB
/
Welcome.htm
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
<!DOCTYPE HTML>
<html lang="nl">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Welcome to AutoHotkey</title>
<meta name="robots" content="noindex, nofollow" />
<link href="static/theme.css" rel="stylesheet" type="text/css" />
<style>
h1, h2 {
border: none;
}
h1 {
font-size: 300%;
font-weight: normal;
}
.emlink {
font-weight: bold;
}
#container {
padding: 10% 20%;
}
</style>
<script src="static/content.js" type="text/javascript"></script>
</head>
<body>
<a id="ahklogo"><img src="static/ahk_logo.svg" onerror="this.src='static/ahk_logo.png'; this.onerror=null;" alt="AutoHotkey"></a>
<div id="container">
<h1 id="welcome">Welcome...</h1>
<h2 id="Getting_Started">Getting Started</h2>
<p>Before AutoHotkey can do anything, you need to write a script telling it what to do.<br>
To learn how, read <a class="emlink" href="Tutorial.htm">the tutorial</a> or <a href="Scripts.htm">dive straight in</a>.</p>
<p>Basically: <a href="Tutorial.htm#s12">create a script file</a> → <a href="Tutorial.htm#s2">add some hotkeys</a> → run the script file.</p>
<p>You can also get help or find many useful scripts on <a href="https://www.autohotkey.com/boards/">our friendly discussion forum</a>.</p>
<h2 id="Why_am_I_seeing_this" style="margin-top: 1.5em">Why am I seeing this?</h2>
<div id="why">
<p>You ran AutoHotkey without <a href="Scripts.htm#cmd">telling it</a> which script file to run, and it couldn't find a script in either of <a href="Scripts.htm#defaultfile">the usual places</a>.</p>
</div>
</div>
</body>
</html>