-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdnd.html
More file actions
55 lines (48 loc) · 1.74 KB
/
dnd.html
File metadata and controls
55 lines (48 loc) · 1.74 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
<!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>Dungeons & Dragons</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 class="active" href="./dnd.html">Dungeons and Dragons</a></li>
<li><a 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>One of my main interesting in life is being a Dungeon Master for Dungeons and Dragons. I quite enjoy
being in the hotseat and being able to share a story for my friends to expierence, its also a great
excuse to get together for some drinks with my friends.
<br><br>
It can teach some important life lessons too. Teamwork, creative thinking, quick decision making, and
many more abstract things.
</p>
</div>
<img class="descbox" src="./img/dice.jpg" alt="Picture of a D20 die" width="150">
</div>
</body>
<br>
<footer align="center" class="ffooter" ;">
<p>Made by Nathan roche.
<hr width="10%" align="center">
All rights reserved.™©®
</p>
</footer>
</html>