-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (27 loc) · 1015 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Project 1</title>
<link rel ="stylesheet" href= "static/style.css">
<div class = "topnav">
<a href = "themoviepage.html"> Movies</a>
<a href = "actorPage.html">Actors</a>
</div>
</head>
<body class="home">
<header class ="title">Movie Database</header>
<img class = "data" src="static/img/database.png" alt="data">
<p class="intro"> Welcome to the movie database! After clicking the button below,
you will see movies listed by title and year released. Click corresponding buttons for the desired amount of movies you would like to see.</p>
<!--
<div id="movie_info"></div>
<button id="btn_list"> View movies</button>
<button id="btn"> 5 more movies</button>
<button id="all_btn"> All Movies</button>
-->
<h1 class ="stats">Statistics</h1>
<section class ="statdata" id="content"></section>
<script src ="static/Javascript/scriptHome.js"></script>
</body>
</html>