-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (122 loc) · 5 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<title>SupeleagueGreeceApi v1.0</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Giorgos Iliopoulos" />
<meta name="description" content="SupeleagueGreeceApi Docs" />
<link rel="icon" type="image/png" href="./assets/img/superleague.png" />
<!--CSS-->
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/main.css" />
<!--JQuery-->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"
></script>
<!--Bootstrap 4.6.0-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js"
integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
crossorigin="anonymous"
></script>
<!--Font Awesome-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!--JS-->
<script src="./assets/page_js/main.js"></script>
</head>
<body>
<section id="info">
<div class="container text-center">
<h3 class="mt-5 text-center">
SuperleagueGreeceApi <span class="version">v1.0</span>
</h3>
<img class="sllogo" src="assets/img/superleague.png" />
<h5 class="mt-5">The 1st greek football api.</h5>
<a class="github" target="_blank" href="https://github.com/gioiliop7/GreekSuperleagueApi">
<div>
<p>Star the api's repo on Github</p>
<img class="github-logo" src="./assets/img/github.gif" />
</div>
</a>
</div>
</section>
<section id="gets">
<div class="container">
<div
class="
row
d-flex
flex-column
justify-content-center
text-center
align-items-center
"
>
<p class="mb-5">The api is free for use for anyone in the world.</p>
<h1 class="get">GET</h1>
</div>
<div class="test-row mb-5 mt-3">
<div class="row mt-5">
<div class="col-md-8">
<div class="left">
<h4 class="pb-5">
Click the links above to see a response example of that url.
</h4>
<h5 class="mt-5 mb-5">Fetch all teams participated in Greek National League</h5>
<p class="teams">GET <span class="host">https://superleaguegreeceapi.herokuapp.com</span>/teams</p>
<h5 class="mt-5 mb-5">Fetch all championships</h5>
<p class="championships">GET <span class="host">https://superleaguegreeceapi.herokuapp.com</span>/championships</p>
<h5 class="mt-5 mb-5">Fetch first scorers of every season</h5>
<p class="first-scorers">GET <span class="host">https://superleaguegreeceapi.herokuapp.com</span>/first-scorers</p>
<h5 class="mt-5 mb-5">Fetch top scorers of all time</h5>
<p class="top-scorers">GET <span class="host">https://superleaguegreeceapi.herokuapp.com</span>/top-scorers</p>
<h5 class="mt-5 mb-5">Fetch all champions of league</h5>
<p class="champions">GET <span class="host">https://superleaguegreeceapi.herokuapp.com</span>/champions</p>
<h5 class="mt-5 mb-5">Fetch cities by their team</h5>
<p class="city">GET <span class="host">https://superleaguegreeceapi.herokuapp.com</span>/city</p>
</div>
</div>
<div class="col-md-4">
<div class="right">Response</div>
</div>
</div>
</div>
</div>
</section>
<section id="help">
<h3 class="text-center">For every help or inquiries send me a message. </h3>
<h3 class="text-center">More urls and data to come!🙏</h3>
</section>
<footer>
<div class="container">
<div class="row flex-column d-flex text-center align-items-center justify-content-center">
<img class="footer-logo" src="assets/img/graphic.png" />
<h4 class="mt-5 mb-5">Developed by Giorgos Iliopoulos</h4>
</div>
</div>
</footer>
</body>
</html>