-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
51 lines (49 loc) · 1.79 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CineMate</title>
<link rel="icon" type="image/x-icon" href="./images/logo.png"/>
<link rel="stylesheet" href="./styles/style.css"/>
</head>
<body>
<main>
<div id="hero">
<div class="backdropImageGradient" id="heroGradient">
<img class="backdropImage" src="./images/defaultBackdrop.jpg" id="heroImage"/>
</div>
<div>
<img class="heroLogo" src="./images/logo.png" id="logo"/>
</div>
<div id="heroText">
<p id="instructions">Search for any movie or TV show to see where it is available to stream, rent, or buy!<br/></p>
</div>
</div>
<form id="search-form">
<div class="radio-button">
<input type="radio" id="css" name="showType" value="tv" checked/>
<label for="css">TV Shows</label><br/>
</div>
<div class="radio-button">
<input type="radio" id="html" name="showType" value="movie"/>
<label for="html">Movies</label><br/>
</div>
<input type="text" placeholder="Movie or Show Title..." id="user-input" name="searchQuery"/>
<button type="submit">Search</button>
</form>
<p id="shows"></p>
</main>
<footer>
<a href="https://developer.themoviedb.org/docs/getting-started">
<img src="./images/tmdb.svg" alt="tmdb link" id="tmdb-logo"/>
</a>
<a href="./project.html">
<img src="images/logo.png" id="footer-logo"/>
</a>
<p>© https://github.com/drwill99</p>
</footer>
<script src="./scripts/mainProject.js" type="module"></script>
</body>
</html>