prtest/index.html

21 lines
721 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greeting Card</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container d-flex justify-content-center align-items-center vh-100">
<div class="card text-center shadow" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">Hello!</h5>
<p class="card-text">Welcome to this simple greeting card.</p>
</div>
</div>
</div>
</body>
</html>