22 lines
628 B
HTML
22 lines
628 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Animation Card</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<! -- Kreis & Card Farbe #0400fd-->
|
|
<div class="circle" style="--clr: #0400fd;">
|
|
<img src="stop_logo.png" class="logo">
|
|
</div>
|
|
<div class="content">
|
|
<h2>Wuff Wuff... </h2>
|
|
<p>Lauf um dein Leben!</p>
|
|
<a href="#">Entdecke mehr</a>
|
|
</div>
|
|
<img src="bild_logo.png" class="product_img">
|
|
</div>
|
|
</body>
|
|
</html> |