-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (95 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>OmgDB A Movies Character Database Solution</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>OMGDB</h1>
<h2>A Movies Character Database Solution</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>
This is a simple database solution for the OmgDB A Movies Character Database.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>
This database solution is built using the following repositories and credit to their respactive
owners including me::
</p>
<ul>
<li>
<a href="https://github.com/W1LDN16H7/fandom-api">Fandom API</a>
</li>
<li>
<a href="https://github.com/api-tutorial/stranger-things-api">StrangerThings</a>
</li>
<li>
<a href="https://github.com/KostaSav/hp-api">HarryPotterAPI</a>
</li>
</ul>
</div>
<div class="col-md-12">
<p>
Author:
</p>
<ul>
<li>
<a href="https://github.com/W1LDN16H7" target="_blank">TheKnight</a>
</li>
</ul>
</div>
<div class="col-md-12">
<p>
Endpoints:
</p>
<ul>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/marvel" target="_blank">/api/v1/marvel</a>
</li>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/marvel?id=1"
target="_blank">/api/v1/marvel?id=1</a>
</li>
</ul>
</div>
<div class="col-md-12">
<p>Database included:</p>
<ul>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/marvel">Marvel Studio</a>
</li>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/starwars">StarWars World</a>
</li>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/hp">HarryPotter</a>
</li>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/strangerthings">Stranger Things</a>
</li>
<li>
<a href="https://omg-db.herokuapp.com/api/v1/pirates">Pirates of the Caribbean</a>
</li>
</ul>
<h2>Please contribute by adding more movies data or create a beautiful landing page for OmgDB</h2>
</div>
</div>
<p align="center">
Made with ❤️ By <a href="https://github.com/W1LDN16H7">TheKnight</a>
</p>
</body>
</html>