-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.29 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="js/main.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">SWAPI_APP</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="https://github.com/MarcelFox/swapi_app">GitHub</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col" id="main_grid">
</div>
</div>
</div>
<div class="jumbotron">
<h1 class="display-4">Hello Rebel!</h1>
<p class="lead">Welcome to SWAPI_APP, it's just a simple node.js application to handle JSON data from <a href="https://swapi.co/">SWAPI</a>, which is the perfect API to gather all the information about Star Wars movie franchise!</p>
<blockquote>
<p>“May the Force be with you.”</p>
<footer>Yoda</footer>
</blockquote>
<hr class="my-4">
<p>You can find more information on GitHub!</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="https://github.com/MarcelFox/swapi_app" role="button">Learn more</a>
</p>
</div>
</body>
</html>