-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Movie Title</title>
<link href="https://fonts.googleapis.com/css?family=Pangolin" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Righteous" rel="stylesheet">
<link href="styles/styles.css" rel="stylesheet">
<script src="lib/react/react-with-addons.js"></script>
<script src="lib/react/react-dom.js"></script>
</head>
<body>
<div class='title'> MovieList</div>
<h1 align="center"> Search for your Movie Here: </h1>
<p align="center"> If your title is not there, just hit the refresh button to try again! Thanks for using <b>MovieList</b>! </p>
<img class='resize' src="film.png">
<div id="app"></div>
<script src="components/Search.js"></script>
<script src="components/Info.js"></script>
<script src="components/Add.js"></script>
<script src="components/MovieListEntry.js"></script>
<script src="components/MovieList.js"></script>
<script src="components/App.js"></script>
<script src="index.js"></script>
</body>
</html>