-
Notifications
You must be signed in to change notification settings - Fork 2
/
page2.html
155 lines (129 loc) · 3.63 KB
/
page2.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!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>Document</title>
<link rel="stylesheet" href="page2.css">
<link rel="stylesheet" href="./styles/main.css" />
<link rel="stylesheet" type="text/html" src="/styles/login-data.css" />
<link rel="icon" href="./Images/TV App Logo.png" type="image/x-icon" />
<script
src="https://kit.fontawesome.com/d591cda822.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="Modal"></div>
<header id="navbar-header"></header>
<div class="container">
<div class="front">
<div class="banner">
<h1 id="namemovie">Ted Lasso</h1>
<h2 id="ratingmovie">Pilot</h2>
<img id="movieImg" src="https://www.tvinsider.com/wp-content/uploads/2021/07/ted-lasso-jason-sudeikis-1014x570.jpg" alt="">
<h5>Apple Tv+</h5>
<div id="btn">
<button>Play Free Episode</button>
</div>
<div id="btn2">
<button>Start Free Trial</button>
</div>
<div id="title">
<p id="detailsmovie">S1 E1:American Football coach Ted Lasso is
hired by a wealthy divorcee to coach the English
scoccer team AFC Richmond
</p>
</div>
<div id="title2">
<p id="ratingmovie2">
comedy.Aug14,2020.30min-Apple Tv+
</p>
</div>
</div>
</div>
</div>
<div id="middle">
<h2>How to Watch</h2>
<img src="https://is1-ssl.mzstatic.com/image/thumb/DB8YqlVtN7M8YvGvgsP2eg/400x225.png" alt="">
<div>
<h2>Play with Apple Tv+</h2>
</div>
<p>7 day free then $4.99/month</p>
</div>
<!-- bottom -->
<div id="bottom">
<div>
<h2>Information</h2>
<div>
<h3>Genre</h3>
comedy
</div>
<div>
<h3>Released</h3>
2020
</div>
<div>
<h3>Run Time</h3>
30min
</div>
<div>
<h3>Rated</h3>
TV-MA
</div>
<div>
<h3>Region of Origin</h3>
United Kingdom
</div>
</div>
<!-- 2nd part -->
<div>
<h2>Languages</h2>
<div>
<h3>Orignal Audio</h3>
English
</div>
<div>
<h3>Audio</h3>
English(AD,Dolby Atoms Dolby 5.1 AAC),and 9 more
</div>
<div>
<h3>Subtitles</h3>
English(CC,SDH) and 40 more... see all
</div>
</div>
<div>
<h2>Accessibility</h2>
<div>
<div id="small">CC</div>
Closed captions(CC),refer to subtitles
in the available language with the addition of relevent
non dialogue information
</div>
<div>
<div id="small">AD</div>
Audio descriptions (AD) refer to a narrator track describing
what is happing on screen to provide context for those who are
blind or have low vision
</div>
</div>
</div>
</body>
</html>
<script>
window.addEventListener("load",()=>{
let data= JSON.parse(localStorage.getItem("movieDetails"));
let img=document.getElementById("movieImg");
img.src=data.image;
let name=document.getElementById("namemovie");
name.innerText=data.name;
let rating=document.getElementById("ratingmovie");
rating.innerText=data.rating;
let details=document.getElementById("detailsmovie");
details.innerText=data.details;
let rating2=document.getElementById("ratingmovie2");
rating2.innerText=data.rating;
})
</script>
<script src="./scripts/main.js" type="module"></script>