-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvracing.html
More file actions
58 lines (51 loc) · 1.99 KB
/
vracing.html
File metadata and controls
58 lines (51 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./stylesheet.css">
<link rel="icon" type="image/x-icon" href="./img/logo.png">
<title>Sim Racing</title>
</head>
<header>
<div class="topbar">
<div class="banner">
<h1>Nathan Roche's Personal Website</h1>
</div>
<nav class="sidebar">
<ul class="sidelist">
<li><a href="./index.html">Main page</a></li>
<li><a href="./dnd.html">Dungeons and Dragons</a></li>
<li><a class="active" href="./vracing.html">Virtual Racing</a></li>
<li><a href="./3dprint.html">3D Printing</a></li>
<li><a href="./vr.html">Virtual Reality</a></li>
</ul>
</nav>
</div>
</header>
<br>
<body>
<div class="main">
<div class="bio">
<p>A recent passion of mine is Virtual Racing Simulation. Racing Simulators, like "iRacing", offer very
relistic comparison to real life racing, which is only further improved by hardware, like wheels,
pedals, full simulator setups.
<br>
Ive been upgrading my own hardware and gear to get a more immersive expierence as it is truely enjoyable
for me. On the right is my personal setup for Sim Racing.
<br><br>
I got into motorsport over covid and have slowly been getting deeper and deeper into the culture. I
would love to attend an F1 race and its also my dream to drive an F4 car some day in some fasion.
</p>
</div>
<img class="descbox" src="./img/racing.jpg" alt="Picture of my Sim Racing setup" width="200">
</div>
</body>
<br>
<footer align="center" class="ffooter" ;">
<p>Made by Nathan roche.
<hr width="10%" align="center">
All rights reserved.™©®
</p>
</footer>
</html>