-
Notifications
You must be signed in to change notification settings - Fork 0
/
charmander.html
123 lines (81 loc) · 3.06 KB
/
charmander.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<html>
<head>
<!-- College rquirements -->
<!-- Use of Bootstrap here here -->
<title>bulbasaur </title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row justify-content-end" style="padding-top: 1%; padding-bottom: 1%; padding: 1%;">
<div class="col-4" style="text-align: left;">
<h1> pokedex #004: charmander</h1>
<a href="http://pokemon-game.aidencizek.repl.co/pokedex/" target="_blank"
class="w3-bar-item w3-button w3-padding-large w3-hide-small">click here to go back</a>
</div>
</div>
<h1>charmander </h1>
<p1> the lizard pokemon!</p1>
<div>
<img src="https://serebii.net/pokemon/art/004.png" style="width:20%">
</div>
<div>
<div class="col-4" style="text-align: left;">
<h1> evolution </h1>
<p>when charmander reaches level 16, it evolves into</p>
<a href="http://nighthawkcoders.cf/courses/python" target="_blank"
class="w3-bar-item w3-button w3-padding-large w3-hide-small">charmeleon</a>
<img src="https://www.serebii.net/pokemon/art/005.png" style="width:20%">
<p>when charmander reaches level 36, it evolves into</p>
<a href="http://nighthawkcoders.cf/courses/python" target="_blank"
class="w3-bar-item w3-button w3-padding-large w3-hide-small">charizard</a>
<img src="https://www.serebii.net/pokemon/art/006.png" style="width:20%">
</div>
<div class="product" style="margin-top: 5%;">
<div class="row" style="padding: 0%; padding-top: 0%; padding-bottom: 5%;">
<div class="col-8" >
<h1> moves </h1>
</div>
</div>
</div>
</body>
<style>
html, body {
margin: 0;
height: 100%;
color: black;
}
h1{
font-size: 2em;
color: red;
}
.fa{
font-size: 3em;
letter-spacing: 1em;
transition: all .2s;
color: black;
}
}
.btn:link,
.btn:visited {
text-transform: uppercase;
text-decoration: none;
padding: 15px 40px;
display: inline-block;
border-radius: 100px;
transition: all .2s;
position: absolute;
color: black;
font-size: 2em;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
}
.btn:active {
transform: translateY(-1px);
box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
}
</style>
</html>