-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 2.63 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
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>BRR ~ GW2 Trading Post Calculator</title>
<meta name="description" content="tboraro:tp is an economic counselor for the Guild Wars 2 Trading Post">
<meta name="keywords" content="guild wars, guild wars 2, trading post, calculator, profit, prices, item database">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/application.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="span12">
<header>
<h1>Get the most profitable items.</h1>
<h2>A list. No filters. Only profit.</h2>
</header>
</div>
</div>
<div class="row">
<div class="span4">
<h3><small>Step 1</small><br />Item type</h3>
<p>Choose a type of item to get the most profitable list.</p>
<p>
<select id="type">
<option value="0">Armor</option>
<option value="2">Bag</option>
<option value="3">Consumable</option>
<option value="4">Container</option>
<option value="5">Crafting Material</option>
<option value="6">Gathering</option>
<option value="7">Gizmo</option>
<option value="11">Mini</option>
<option value="13">Tool</option>
<option value="15">Trinket</option>
<option value="16">Trophy</option>
<option value="17">Upgrade Component</option>
<option value="18">Weapon</option>
<option value="all">All (turtle mode)</option>
</select>
</p>
</div>
<div class="span4">
<h3><small>Step 2</small><br />Range of price</h3>
<p>Select a price range you are capable to invest.</p>
<div class="btn-group">
<button class="btn active">From 1 silver</button>
<button class="btn">From 3.5 gold</button>
<button class="btn">From 15 gold</button>
</div>
</div>
<div class="span4">
<h3><small>Step 3</small><br />Checkout using PayPal</h3>
<p>We will send your custom list to your email.</p>
<a href="pricing.html" class="btn btn-large btn-primary">Checkout with PayPal</a>
</div>
</div>
</div>
</body>
</html>