-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (60 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/favicon.gif">
<title>Raytracing 101</title>
<link href="https://fonts.cdnfonts.com/css/myriad-pro" rel="stylesheet">
<style>
@import url('https://fonts.cdnfonts.com/css/myriad-pro');
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="" class="logo">
<img src="images/gojo.jpg" alt="Logo" class="logo">
</a>
</div>
<a href="index.html" style="border-bottom: .1em;border-bottom-style: solid;border-color: green;"><button class="nav-button">Introduction</button></a>
<a href="OldvsNew.html"><button class="nav-button">Old vs New</button></a>
<a href="Games.html"><button class="nav-button">Supported Games</button></a>
<a href="DLSS.html"><button class="nav-button">DLSS 3</button></a>
<a href="GraphicCard.html"><button class="nav-button">Graphic Cards</button></a>
</nav>
</header>
<div class="div1">
<div class="title_div1">
<h1>What exactly is Raytracing?</h1>
</div>
<div class="text-and video">
<div class="video-player">
<video src="video/video_1.mp4" class="video">Entschuldigen sie, ihr browser unterstützt dieses Videoformat nicht.</video>
</div>
<div class="text">
<p>NVIDIA RTX ist die fortschrittlichste Plattform für Raytracing und KI-Technologien, die die Art und Weise, wie wir spielen und erstellen, revolutionieren. Mehr als 250 Top-Spiele und -Anwendungen nutzen RTX, um realistische Grafiken mit unglaublich schneller Leistung oder modernste neue KI-Funktionen wie NVIDIA DLSS und NVIDIA Broadcast zu liefern. RTX ist der neue Standard.</p>
</div>
</div>
<a href="https://www.nvidia.com/de-de/geforce/rtx/" class="button_examples">See more examples</a>
</div>
<div class="div2">
<div class="text-and image">
<h1>Games that support Raytracing</h1>
<div class="carousel">
<div class="carousel-inner">
<img src="images/img1.jpg" alt="Picture of an Game">
<img src="images/img2.jpg" alt="Picture of an Game">
<img src="images/img3.jpg" alt="Picture of an Game">
</div>
<div class="arrow left"><</div>
<div class="arrow right">></div>
</div>
</div>
</div>
<script src="javascript/index.js"></script>
<script src="javascript/general.js"></script>
</body>
</html>