-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassignment.html
More file actions
57 lines (55 loc) · 2.08 KB
/
assignment.html
File metadata and controls
57 lines (55 loc) · 2.08 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
<!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="index.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>Main Topic</h1>
<p>How to Gain Steam Level Fastly?</p>
<p>How do I increase XP on my profile to level up?
There are a number of ways to increase your profile level on Steam. These include :
Purchasing games
Earning badges
Crafting badges
Upgrading badges</p>
</div>
<table class="table table-bordered table-striped table-hover">
<tr>
<th>Steam Levels</th><th>Steam Badges</th>
</tr>
<tr>
<td>
<img src="steamlevel.png" class="img-thumbnail">
</td>
<td>
<img src="steambadges.png" class="img-thumbnail">
</td>
</tr>
</table>
</div>
</body>
</html>