<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<link rel="stylesheet" type="text/css" href="//use.fontawesome.com/releases/v5.7.2/css/all.css">
<style>
div {
border: 1px solid #666;
display: inline-block;
height: 50px;
margin: 30px;
padding: 2px;
}
#text,
#icon {
line-height: 50px;
}
#icon {
vertical-align: middle;
font-size: 30px;
}
</style>
</head>
<body>
<div>
<i id=icon class="fas fa-bullhorn"></i>
<span id="text">Hello World</span>
</div>
</body>
</html>