-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOldvsNew.html
59 lines (48 loc) · 2.11 KB
/
OldvsNew.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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"><button class="nav-button">Introduction</button></a>
<a href="OldvsNew.html"style="border-bottom: .1em;border-bottom-style: solid;border-color: green;"><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>Compare </h1>
<h1>Raytracing vs No Raytracing</h1>
</div>
<div class="text-and image">
<div class="text text-secondpage">
<p>Die NVIDIA Ada Lovelace-Architektur stellt die volle Pracht des Raytracings dar, das simuliert, wie sich Licht in der realen Welt verhält. Mit der Leistung der GeForce RTX 40-Serie und den RT-Recheneinheiten der dritten Generation kannst du so unglaublich detaillierte virtuelle Welten wie nie zuvor erleben.</p>
</div>
<div class="slider" id="slider">
<img src="images/no-rtx.jpg" id="slider-image">
<div class="slider-inner" id="slider-inner"></div>
<div class="slider-handle" id="slider-handle"></div>
</div>
</div>
</div>
<script src="javascript/general.js"></script>
<script src="javascript/OldvsNew.js"></script>
</body>
</html>