63 lines
2.1 KiB
HTML
Raw Permalink Normal View History

2022-11-10 13:46:32 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./style.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<title>Super Hero Squad</title>
</head>
<body>
<header class="container">
<div class="row">
<div id="header" class="col">
<h1>Super Hero Squad</h1>
<p>Hometown : Metro City</p>
</div>
</div>
</header>
<div id ="content" class="container">
<div class="row">
<article class="col-4">
<h2>Molecule Man</h2>
<p>Secret Identity : Dan Jukes</p>
<p>Age : 29</p>
<p>Superpowers : </p>
<ul>
<li>Radiation Resistance</li>
<li>Turning Tiny</li>
<li>Radiation Blast</li>
</ul>
</article>
<article class="col-4">
<h2>Madame Uppercut</h2>
<p>Secret Identity : Jane Wilson</p>
<p>Age : 39</p>
<p>Superpowers : </p>
<ul>
<li>Million Tone punch</li>
<li>Damage resistance</li>
<li>Superhuman reflexes</li>
</ul>
</article>
<article class="col-4">
<h2>Eternal Flame</h2>
<p>Secret Identity : Unknown</p>
<p>Age : 100000</p>
<p>Superpowers : </p>
<ul>
<li>Immortality</li>
<li>Heat Immunity</li>
<li>Inferno</li>
<li>Teleportation</li>
<li>Interdimensional travel</li>
</ul>
</article>
</div>
</div>
</body>
</html>