컬러나 font-size 변경 가능
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
rel="stylesheet">
<style>
span.material-symbols-outlined {
font-size: 50px;
}
span.red {
color: red;
}
span.blue {
color: blue;
}
</style>
</head>
<body>
<span class="material-symbols-outlined red">
info
</span>
<span class="material-symbols-outlined blue">
menu
</span>
</body>
</html>