-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.html
43 lines (40 loc) · 2.1 KB
/
tasks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Task List - Responsive Web Design - Coursera</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<ul class="nav nav-tabs nav-justified">
<li role="presentation"><a href="index.html">Home</a></li>
<li role="presentation" class="active"><a href="tasks.html">Tasks</a></li>
<li role="presentation"><a href="about.html">About</a></li>
</ul>
<div class="purpose">
This is a task page that presents the details of a single task to the user. Tasks have a title, a description and a person associated with them. You should display that person somehow (e.g. their name, a picture, etc.). It is ok for all the tasks on the landing page to link to the same task detail page, as this is just an example of how a task looks.
</div>
<ul class="row task-details">
<li class="col-md-12">
<h2>Druid or Hunter Victory</h2>
<h3><img src="http://hydra-media.cursecdn.com/hearthstone.gamepedia.com/d/d5/Alleria_64.png?version=31d3e71c9e18f2afea14da7206c226dc" width="64" alt="Alleria">Alleria<h3>
<h4>Win 2 games with Druid or Hunter</h4>
</li>
<li class="col-md-12 finished">
<h2>Rogue Victory</h2>
<h3><img src="http://hydra-media.cursecdn.com/hearthstone.gamepedia.com/5/52/Valeera_64.png?version=76a4b7f6c29fd141cda6765acd0df061" width="64" alt="Valeera">Valeera<h3>
<h4>Win 3 games with Rogue</h4>
</li>
<li class="col-md-12">
<h2>Rogue Victory</h2>
<h3><img src="http://hydra-media.cursecdn.com/hearthstone.gamepedia.com/9/98/Jaina_64.png?version=25b88e9a72ff68c90e764631ec761add" width="64" alt="Jaina">Jaina</h3>
<h4>Win 5 games with Mage</h4>
</li>
</ul>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>