-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxptable.html
More file actions
50 lines (49 loc) · 1.97 KB
/
xptable.html
File metadata and controls
50 lines (49 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Assignment</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-md bg-dark navbar-dark">
<a class="navbar-brand" href="#">Topics</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="assignment.html">Main Topic</a>
</li>
<li class="nav-item">
<a class="nav-link" href="badgeguide.html">Badge Guide</a>
</li>
<li class="nav-item">
<a class="nav-link" href="xptable.html">Steam Calculator</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1>Steam XP Table</h1>
<p>Click this link if you want to see the Table Info for Steam Xp Levels : </p>
<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=722062281">
<button type="button" class="btn btn-primary" href>Steam XP Table</button>
</a>
</div>
<table class="table table-bordered table-striped table-hover">
<tr>
<th>Steam Levels</th>
</tr>
<tr>
<td>
<img src="steamlevel.png" class="img-thumbnail">
</td>
</tr>
</table>
</div>
</body>
</html>