-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuper-powers.html
89 lines (79 loc) · 3.42 KB
/
super-powers.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
<!DOCTYPE html>
<html lang="en-ca">
<head>
<meta charset="utf-8">
<title>Super Powers · Amoeba Amigas</title>
<link href="css/main.css" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700" rel="stylesheet">
<link href="favicon.ico" rel="shortcut icon">
</head>
<body>
<header class="masthead">
<strong class="logo">
<a href="index.html">
<img class="logo-img" src="img/logo.svg" alt="Amoeba Amigas">
</a>
</strong>
<nav>
<ul class="topnav">
<li><a href="#">Help Me!</a></li>
<li><a class="nav-btn" href="#nav">Navigation</a></li>
</ul>
</nav>
</header>
<main class="main">
<h1>Super Powers</h1>
<p class="intro">Each protozoic amiga has a unique super ability to help defeat evil alien robot ninjas—including transmogrification.</p>
<section>
<h2>Transmogrification</h2>
<p>Since they are single celled organisms they can adjust their body shape for specific purposes: growing flagella to move quickly, sprouting prototypical hand forms—even evolving together into a four-celled organism!</p>
</section>
<section class="power" id="melodia">
<div class="super-img">
<img class="super-amoeba" src="img/melodia.svg" alt="">
<img class="super-power" src="img/cell-regen.svg" alt="">
</div>
<h2>Melodía — Rapid cellular regeneration</h2>
<p>Melodía’s rapid cellular regen. allows her body to rejuvenate from injuries at a highly accelerated rate—making her almost invincible.</p>
</section>
<section class="power" id="fina">
<div class="super-img">
<img class="super-amoeba" src="img/fina.svg" alt="">
<img class="super-power" src="img/poison.svg" alt="">
</div>
<h2>Fina — Poison emission</h2>
<p>Fina’s is capable of emitting poison bursts of different power and purpose: stinging enemies, corroding metal, changing air conditions and more.</p>
</section>
<section class="power" id="belisa">
<div class="super-img">
<img class="super-amoeba" src="img/belisa.svg" alt="">
<img class="super-power" src="img/telepathy.svg" alt="">
</div>
<h2>Belisa — Telepathy</h2>
<p>Mind powers are Belisa’s thing. She can read thoughts, control thoughts, and create amazing impenetrable barriers all in her opponents mind.</p>
</section>
<section class="power" id="rosa">
<div class="super-img">
<img class="super-amoeba" src="img/rosa.svg" alt="">
<img class="super-power" src="img/technopathy.svg" alt="">
</div>
<h2>Rosa — Technopathy</h2>
<p>Technopathy—the control of technology with one’s mind—is extremely helpful for Rosa and her amigas, especially when battling robots.</p>
</section>
</main>
<nav id="nav">
<ul class="nav">
<li><a href="index.html">Home<i class="nav-icon"></i></a></li>
<li><a href="super-powers.html">Super powers<i class="nav-icon"></i></a></li>
<li><a href="#">Vehicles<i class="nav-icon"></i></a></li>
<li><a href="#">History<i class="nav-icon"></i></a></li>
<li><a href="#">Contact<i class="nav-icon"></i></a></li>
</ul>
</nav>
<footer class="footer">
<p class="copyright">© Amoeba Amigas</p>
<a class="terms" href="#">Terms, privacy & cookies</a>
</footer>
</body>
</html>