代码
一般在个人博客上使用的较为频繁, 用于显示代码的风格. 在Bootstrap中主要提供了三种代码风格
单行内联代码
使用<code></code>
来显示单行内联代码
<!--单行内联代码-->
<code>this is a simple code</code>
多行块代码
<!--多行块代码-->
<pre>
int main(){
cout<<"Hello World!";
return 0;
}
</pre>
快捷键风格
<!--快捷键-->
<p>使用<kbd>ctrl+s</kbd>保存</p>