<!-- 
<head>
  <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet">
</head> 
-->

<div class="container">
  <div class="icon">
    <span class="material-symbols-outlined">
      home
    </span>
  </div>
  <div class="icon">
    <span class="material-symbols-outlined">
      settings
    </span>
  </div>
  <div class="icon">
    <span class="material-symbols-outlined">
      key
    </span>
  </div>
</div>
.container {
  display: flex;
  flex-direction: row;
}

.icon {
  display: flex;
  width: 50px;
  height: 50px;
  background: #EAEAEA;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin-right: 8px;
}

External CSS

  1. https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined

External JavaScript

This Pen doesn't use any external JavaScript resources.