类选择器+CSS(内嵌式)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>类选择器+CSS内嵌式</title>
<style type="text/css">
.g{color:#1B6FEF; font-size: 150px;}
.o{color:#009A57; font-size: 150px;}
.o{color:#DB4732; font-size: 150px;}
.g{color:#1B6FEF; font-size: 150px;}
.l{color:#FFD669; font-size: 150px;}
.e{color:#009A57; font-size: 150px;}
</style>
</head>
<body>
<div style="text-align: center;">
<strong class="g">G</strong>
<strong class="o">o</strong>
<strong class="o">o</strong>
<strong class="g">g</strong>
<strong class="l">l</strong>
<strong class="e">e</strong>
</div>
</body>
</html>
效果图:
![在这里插入图片描述](https://img-blog.csdnimg.cn/20200529195944809.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L20wXzQ3NjU1NDgy,size_16,color_FFFFFF,t_70#pic_center)