-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 2.33 KB
/
index.html
File metadata and controls
67 lines (63 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Mulish:wght@300&family=Pontano+Sans&display=swap"
rel="stylesheet"
/>
<title>TV Show Project | Salem (sSalem123)</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link href="style.css" rel="stylesheet" />
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
</head>
<body>
<header id="main-header">
<div class="img-holder" data-aos="fade-right" data-aos-duration="3000">
<!-- <img src="TV-SHOWS.png" alt="SHOWS" /> -->
<div class="logo">TV-SHOWS</div>
</div>
<div id="inputAndSelect">
<input
id="search-input"
placeholder="search of series"
data-aos="fade-right"
data-aos-duration="2000"
/>
<select
id="selectFromMenu"
data-aos="fade-left"
data-aos-duration="2000"
></select>
</div>
</header>
<h1 id="show">TV show for - all episodes</h1>
<section class="section"></section>
<div id="root" data-aos="fade-down" data-aos-duration="2000"></div>
<div class="card text-center" data-aos="fade-left, zoom-in">
<div class="card-header"></div>
<div class="card-body">
<section class="card-text">We offer what Your looking for .</section>
<a href="#main-header" class="btn btn-primary">Back to search</a>
</div>
<div class="card-footer text-muted">2 days ago</div>
</div>
<!-- Loads a provided function called getAllEpisodes() which returns all episodes -->
<script src="episodes.js"></script>
<!-- Loads YOUR javascript code -->
<script src="script.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>