-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathget_started.html
More file actions
91 lines (66 loc) · 1.7 KB
/
get_started.html
File metadata and controls
91 lines (66 loc) · 1.7 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
$page = 'Get Started';
require_once('header.php');
?>
<div id='main'>
<div class='wrapper'>
<div id='left'>
<h1>
Get started with Thimbl
</h1>
<p>
The best way to use Thimbl is with
your own domain and Finger account. Select one of the options below for more info.
</p>
</hgroup>
<div class="choicebox">
<h2 class="floatleft">
I've got a domain and a Finger account
</h2>
<p class="floatright">
<a href="notyet.html">Great! Sign in</a>
</p>
<div style="clear: both;"></div> <!-- clear floats -->
</div>
<div class="choicebox">
<h2 class="floatleft">
I've got a domain but no Finger account
</h2>
<p class="floatright">
<a href="get_finger.html">Get Finger</a>
</p>
<div style="clear: both;"></div> <!-- clear floats -->
</div>
<div class="choicebox">
<h2 class="floatleft">
I don't have a domain or Finger
</h2>
<p class="floatright">
<a href="get_both.html">Get an account from us</a>
</p>
<div style="clear: both;"></div><!-- clear floats -->
</div>
<hr/>
<div id="tellmemore">
<h2>
Tell me more
</h2>
<a class="floatleft" href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
<a class="floatright" href="faq.html"><img src="faq.png" alt="faq this way" ></a>
</div>
</div>
<div id='right' class="notgrey">
<div style="clear: both;"></div>
<div id="rightpresentation">
<h2>
What is Thimbl?
</h2>
<a href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
</div>
</div>
<div style="clear: both;"></div>
</div>
</div>
<?php require_once('footer.php'); ?>
</body>
</html>