-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo1.html
47 lines (47 loc) · 1.14 KB
/
video1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DLSS 3.0</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="form.html">Form</a></li>
<li><a href="videos.html">Videos</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="info">
<div class="info-text">
<p>Three videos that explain DLSS 3.0</p>
</div>
<table class="videos">
<tr>
<th>Nbr</th>
<th>Title</th>
</tr>
<tr>
<td>1</td>
<td><a href="video1.html">Video 1</a></td>
</tr>
<tr>
<td>2</td>
<td><a href="video2.html">Video 2</a></td>
</tr>
<tr>
<td>3</td>
<td><a href="video3.html">Video 3</a></td>
</tr>
</table>
</div>
<div class="medias">
<iframe src="https://www.youtube.com/embed/pSiczcJgY1s" class="video-player"></iframe>
</div>
</div>
</body>
</html>