generated from CodeYourFuture/tv-show-dom-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (66 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>TV Show Project | Jude Ricketts </title>
<link href="style.css" rel="stylesheet" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<!-- insert fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
</head>
<body>
<!-- test page -->
<!-- <div id="root"></div> -->
<!-- main container for the page -->
<main class="wrapper">
<!-- HEADER ------------------------------->
<header>
<div class="tvlogo">
<a id="logo" href="#home"><img src="https://static.tvmaze.com/images/tvm-header-logo.png" alt="Logo Image"></a>
</div>
<nav class="main-nav">
<ul>
<a href="#home">Home</a>
<a href="#tvShows">TV Shows</a>
<a href="#movies">Movies</a>
<a href="#originals">Originals</a>
<a href="#" >Recent</a>
<a href="#"><br><i class="fas fa-bell sub-nav-logo"></i>Account</a>
</ul>
<!-- SEARCH FIELDSETS ------------------------------>
</nav>
<fieldset>
<input type="search text" class="fas s-name textarea" placeholder=" Search name..." />
<input type="search text" class="fas s-seasons textarea" placeholder=" Search seasons..." />
<input type="search text" class="fas s-episodes textarea" placeholder=" Search episode..." />
</fieldset>
</header>
<!-- TEMPLATE FOR EPISODE CARDS ------------------->
<section class="card template" >
<img class="thumbNail" src="http://static.tvmaze.com/uploads/images/original_untouched/1/2668.jpg" alt="Image of TV programme">
<div class="summary">placeholder</div>
<div class="name">placeholder </div>
<div class="season-episode"> placeholder</div>
<div><a href="#fav"><i class="fa fa-heart"></i><a></div>
</section>
<!-- Loads a provided function called getAllEpisodes() which returns all episodes -->
<script src="episodes.js"></script>
<!-- Loads YOUR javascript code with shows -->
<script src="script.js"></script>
<!-- FOOTER ---------------------------------->
<footer class="footer">
<icons class="icons">
<a href="#"><i class="fab fa-facebook-square logo"></i></a>
<a href="#"><i class="fab fa-instagram logo"></i></a>
<a href="#"><i class="fab fa-twitter logo"></i></a>
<a href="#"><i class="fab fa-youtube logo"></i></a>
</icons>
<copy>
<a href="https://github.com/LovesPictures" target="_blank" class="copyright"> <h4>© TVMaze.com</h4>
</copy>
</footer>
</main>
</body>
</html>