mirror of
https://github.com/arnaucube/kunigu.git
synced 2026-02-06 19:16:44 +01:00
24 lines
442 B
HTML
24 lines
442 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div class="row">
|
|
<div class="card">
|
|
<h2>Hi, this is the card1</h2>
|
|
<p>This card contains this content.
|
|
Maybe we can try to do a list:</p>
|
|
<ul>
|
|
<li>Here is the first element</li>
|
|
<li>Here the second</li>
|
|
<li>Oh just the third</li>
|
|
<li>etc</li>
|
|
</ul>
|
|
</div>
|
|
<div class="card">
|
|
<h2>Hi, this is the card2</h2>
|
|
<p>This card contains this content.</p>
|
|
<p>bla bla bla</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|