Check out this incredible jumbatron
I want to spruce it up by adding three random emojis on the right side like in this example I created using paint: how it should look
Any suggestions on how I can achieve that?
Here's a snippet of my CSS:
.jumbotron {
position: relative;
background-color: #563d7c;
color: #fff;
padding-top: 100px;
margin: 0px;
word-wrap: break-word;
}
And here's a glimpse of my HTML:
<header class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-3"><?php echo $data['CFG']['s_name']; ?></h1>
<p class="lead"><?php echo $data['CFG']['s_about'] ?></p>
<p><a class="btn btn-success btn-lg" href="index.php?mode=start" role="button"><i class="fa fa-download"></i> <?php echo $this->lng['load_client']; ?></a></p>
</div>
</header>