-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyPokedex.html
More file actions
65 lines (64 loc) · 2.87 KB
/
MyPokedex.html
File metadata and controls
65 lines (64 loc) · 2.87 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>My Pokédex</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<ul class="nav navbar-nav">
<li><a href="#">Test</a></li>
<li class="active"><a href="#">Menu</a></li>
</ul>
</nav>
<div class="jumbotron">
<h1>My Pokédex</h1>
<p>This is a Bootstrap page without explicit CSS</p>
<p>Activate Bootstrap by including the following files:</p>
<p>
<ul>
<li><link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"></li>
<li><script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script></li>
<li><script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script></li>
</ul>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="row">
<div class="col-sm-4">
<img src="https://img.pokemondb.net/artwork/pikachu.jpg" class="img-responsive hidden-xs">
</div>
</div>
<h3><strong>Pikachu</strong></h5>
<p>Pikachu is an Electric-type Pokémon introduced in Generation I. Its Pokédex identification number is 25.</p>
<p><a href="#" class="text-primary">View details <span class="glyphicon glyphicon-forward"></span></a></p>
</div>
<div class="col-sm-4">
<div class="row">
<div class="col-sm-4">
<img src="https://img.pokemondb.net/artwork/jigglypuff.jpg" class="img-responsive hidden-xs">
</div>
</div>
<h3><strong>Jigglypuff</strong></h5>
<p>Jigglypuff is a dual-type Normal/Fairy Pokémon introduced in Generation I. Its Pokédex identification number is 39.</p>
<p><a href="#" class="text-primary">View details <span class="glyphicon glyphicon-forward"></span></a></p>
</div>
<div class="col-sm-4">
<div class="row">
<div class="col-sm-4">
<img src="https://img.pokemondb.net/artwork/mr-mime.jpg" class="img-responsive hidden-xs">
</div>
</div>
<h3><strong>Mr. Mime</strong></h5>
<p>Mr. Mime is a dual-type Psychic/Fairy Pokémon introduced in Generation I. Its Pokédex identification number is 122.</p>
<p><a href="#" class="text-primary">View details <span class="glyphicon glyphicon-forward"></span></a></p>
</div>
</div>
</div>
</body>
</html>