JSFiddle - React, Tailwind, and code Playground
by Manju06
HTML
<!DOCTYPE html>
<html>
<head>
<title>Himalayas</title>
<link rel=stylesheet href="stylesheet.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<div class="title-image">
<div class="title-text">
Text Here
</div>
</div>
</body>
</html>
CSS
.title-image{
position:relative;
height:200px;
width:200px;
background-size:100%;
background-image: url(http://placekitten.com/301/301);
}
.title-text{
color: red;
font-size:25px;
}