-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (63 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fictional Aliens</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>List of Fictional Aliens</h1>
<div class="alien">
<h2>Zyloxians</h2>
<p><strong>Home Planet:</strong> Zylox Prime</p>
<p>
<strong>Description:</strong> Tall, slender beings with iridescent skin
that changes color based on their emotions. They communicate through
telepathy and bioluminescent patterns.
</p>
<p>
<strong>Notable Trait:</strong> Highly advanced in biotechnology, they
can manipulate organic matter to create living structures.
</p>
</div>
<div class="alien">
<h2>Gorgons</h2>
<p><strong>Home Planet:</strong> Gorgon-7</p>
<p>
<strong>Description:</strong> Reptilian creatures with multiple eyes and
scaly skin. They have a keen sense of smell and can detect heat
signatures.
</p>
<p>
<strong>Notable Trait:</strong> Known for their ability to produce a
paralyzing venom, which they use for defense and hunting.
</p>
</div>
<div class="alien">
<h2>Florians</h2>
<p><strong>Home Planet:</strong> Flora-9</p>
<p>
<strong>Description:</strong> Plant-based life forms resembling humanoid
trees. They can photosynthesize and communicate through pheromones.
</p>
<p>
<strong>Notable Trait:</strong> They can regenerate quickly and have a
deep connection to their planet's ecosystem.
</p>
</div>
<div class="alien">
<h2>Kryllians</h2>
<p><strong>Home Planet:</strong> Kryllia</p>
<p>
<strong>Description:</strong> Small, insect-like aliens with
exoskeletons and large, multifaceted eyes. They are known for their
hive-mind intelligence.
</p>
<p>
<strong>Notable Trait:</strong> They can produce a range of chemical
signals to communicate and coordinate complex tasks.
</p>
</div>
</body>
</html>