-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
79 lines (70 loc) · 2.93 KB
/
help.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title> Help - FPL Grabber</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/help.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Arvo">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans">
<style>
</style>
</head>
<body >
<div class="well ">
<div class="heading">Help</div>
</div>
<div class="heading" id="head"> How To Get Team ID </div>
<div id="description">
<ol>
<li>Log in to your Fantasy Premier League account.</li>
<li>Click on View Gameweek History</li>
<li>Find your Team Id. It is the number between "entry" and "history" in the URL.</li>
</ol>
</div>
<div class="container">
<br>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active tutorial">
<img src="media/tutorial1.png" alt="Chania" width="460" height="345">
<div class="carousel-caption tutorial">
<p>Log in to your Fantasy Premier League account.</p>
</div>
</div>
<div class="item tutorial">
<img src="media/tutorial2.png" alt="Chania" width="460" height="345">
<div class="carousel-caption tutorial">
<p>Click on View Gameweek History</p>
</div>
</div>
<div class="item">
<img src="media/tutorial3.png" alt="Flower" width="460" height="345">
<div class="carousel-caption tutorial">
<p>FInd your Team Id. It is the number between "entry" and "history" in the URL.</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</body>
</html>