Meta Description" name="description" />
<!DOCTYPE html>
<html lang="si">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>මම ලොක්ක - නිල වෙබ් අඩවිය</title>
<style>
/* මුළු පිටුවේම පෙනුම */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
background-color: #121212; /* කළු පසුබිම - Premium ලුක් එකක් එන්න */
color: white;
text-align: center;
}
/* ඉහළ කොටස (Header) */
header {
background: linear-gradient(45deg, #ffcc00, #ff9900);
padding: 40px 20px;
color: black;
}
/* ප්රධාන පින්තූරය (Profile Pic) */
.profile-pic {
width: 150px;
height: 150px;
border-radius: 50%; /* රවුම් වෙන්න */
border: 5px solid gold;
margin-top: -75px;
background-color: #444;
}
/* මෙනු බාර් එක */
nav { background: #1f1f1f; padding: 15px; position: sticky; top: 0; z-index: 100; }
nav a { color: gold; margin: 0 15px; text-decoration: none; font-weight: bold; font-size: 18px; }
/* මැද කොටස */
.content { padding: 50px 20px; }
.content h1 { font-size: 40px; margin-bottom: 10px; }
.content p { font-size: 18px; color: #ccc; }
/* බටන් එක (Button) */
.btn {
display: inline-block;
background: gold;
color: black;
padding: 15px 30px;
text-decoration: none;
font-weight: bold;
border-radius: 30px;
margin-top: 20px;
transition: 0.3s;
}
.btn:hover { background: white; transform: scale(1.1); }
footer { padding: 20px; color: #666; font-size: 14px; }
</style>
</head>
<body>
<header>
<h1>MAMA LOKKA</h1>
<p>The King of My Own World</p>
</header>
<img src="https://via.placeholder.com/150" alt="Lokka's Photo" class="profile-pic">
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Works</a>
</nav>
<div class="content">
<h1>සාදරයෙන් පිළිගන්නවා!</h1>
<p>මම තමයි මේ සයිට් එකේ ලොක්කා. ඕනෑම වැඩකට මාව සෙට් කරගන්න පුළුවන්.</p>
<a href="https://wa.me/94771234567" class="btn">මට මැසේජ් එකක් දාන්න</a>
</div>
<hr style="width: 50%; border: 0.5px solid #333;">
<footer>
<p>© 2026 මම ලොක්ක Design. All Rights Reserved.</p>
</footer>
</body>
</html>
2
2
3KB
3KB
130.0ms
200.0ms
198.0ms