27 lines
927 B
HTML
27 lines
927 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Credits</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<a href="index.html" class="back-button">← Back</a>
|
|
<div class="credits-container">
|
|
<h1 class="credits-title">Credits</h1>
|
|
<div class="developers">
|
|
<div class="developer-profile">
|
|
<img src="https://avatars.githubusercontent.com/u/45163558?v=4" alt="Developer 1">
|
|
<h4>WhySooooFurious</h4>
|
|
<p>Main Developer</p>
|
|
</div>
|
|
<div class="developer-profile">
|
|
<img src="https://i.ibb.co/2cY0r49/53532e5875139a07a9d594e1c2a471e8.webp" alt="Developer 2">
|
|
<h4>Riqvip</h4>
|
|
<p>Web Designer</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|