<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″ />
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″ />
<title>FLAG INSIDE INDIA</title>
<style>
body {
background: #f0f0f0;
}
.container {
width: 600px;
height: 600px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
font-size: 200px;
font-weight: bold;
background-image: url(flag.jpg);
background-size: cover;
-webkit-background-clip: text; /* For Chrome, Safari */
background-clip: text;
color: transparent;
background-position: center;
}
</style>
</head>
<body>
<div class=”container”>
<h1>INDIA</h1>
</div>
</body>
</html>