Meta Description" name="description" />
<!DOCTYPE html>
<html lang="ur">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lecturer Profile Card</title>
<style>
body {
font-family: 'Segoe UI', sans-serif;
background: #f0f4f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.card {
background: white;
width: 320px;
border-radius: 16px;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
text-align: center;
padding: 25px;
direction: rtl;
}
.card img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #4CAF50;
}
.card h2 {
margin: 15px 0 5px;
color: #333;
}
.card .title {
color: #4CAF50;
font-weight: bold;
margin-bottom: 10px;
}
.card p {
color: #666;
font-size: 14px;
line-height: 1.6;
}
.btn {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background: #4CAF50;
color: white;
text-decoration: none;
border-radius: 8px;
transition: 0.3s;
}
.btn:hover {
background: #388E3C;
}
</style>
</head>
<body>
<div class="card">
<img src="https://via.placeholder.com/120" alt="Lecturer Photo">
<h2>پروفیسر احمد علی</h2>
<div class="title">لیکچر - کمپیوٹر سائنس</div>
<p>
8 سال کا تدریسی تجربہ۔ HTML, CSS, JavaScript اور Python پڑھاتے ہیں۔
طلبہ کو پریکٹیکل پراجیکٹس کے ذریعے سکھانا پسند ہے۔
</p>
<a href="mailto:ahmad@email.com" class="btn">رابطہ کریں</a>
</div>
</body>
</html>2
2
2KB
2KB
88.0ms
180.0ms
179.0ms