Use code class for commands

Change-Id: Ia3fab9ba842b28aa6aa3baf6af40576ca0ad5f54
diff --git a/_includes/ddinstall.html b/_includes/ddinstall.html
index 1fe51eb..c906cad 100644
--- a/_includes/ddinstall.html
+++ b/_includes/ddinstall.html
@@ -4,7 +4,7 @@
 <a id='dd'></a>
 <hr />
 <p class="text">Download the latest image file (.img) from the download link above. Place it in the root of your /sdcard folder and rename it to twrp.img. Run the following commands via adb shell or a terminal emulator app:</p>
-<p class="text">su</p>
-<p class="text">dd if=/sdcard/twrp.img of={{ page.ddof }}</p>
+<p class="code">su</p>
+<p class="code">dd if=/sdcard/twrp.img of={{ page.ddof }}</p>
 </html>
 {% endif %}
diff --git a/_includes/fastbootinstall.html b/_includes/fastbootinstall.html
index 81f0642..597cc26 100644
--- a/_includes/fastbootinstall.html
+++ b/_includes/fastbootinstall.html
@@ -6,14 +6,14 @@
 <p class="text"><a href="http://developer.android.com/sdk/index.html">You will need the platform-tools from the Android SDK on your computer.</a> Find the SDK Only section on the page linked and install the SDK and download only the platform-tools to get adb and fastboot binaries.</p>
 <p class="text">Windows users will need proper drivers installed on your computer. You can try the <a href="http://www.xda-developers.com/universal-naked-driver-solves-your-adb-driver-problems-on-windows/">Naked ADB drivers</a> or the <a href="http://www.koushikdutta.com/post/universal-adb-driver">Universal ADB drivers</a> if you don't already have a working driver installed</p>
 <p class="text">On your device, go into Settings -> About and find the Build Number and tap on it 7 times to enable developer settings. Press back and go into Developer Options and enable USB debugging. From your computer, open a command prompt and type:</p>
-<p class="text">adb reboot bootloader</p>
+<p class="code">adb reboot bootloader</p>
 <p class="text">You should now be in fastboot mode.</p>
 {% if page.fastbootunlock %}
 <p class="text">Your device needs to be unlocked before it can flash custom images. To unlock your device type:</p>
-<p class="text">{{ fastboot }} oem unlock</p>
+<p class="code">{{ fastboot }} oem unlock</p>
 {% endif %}
 <p class="text">Download the correct image file and copy the file into the same folder as your adb and fastboot binaries. Rename the image to twrp.img and type:</p>
-<p class="text">{{ fastboot }} flash recovery twrp.img</p>
-<p class="text">{{ fastboot }} reboot</p>
-<p class="text">Note many devices will replace your custom recovery automatically during first boot. To prevent this, use <a href="http://www.google.com">Google</a> to find the proper key combo to enter recovery. After typing {{ fastboot }} reboot, hold the key combo and boot to TWRP. Once TWRP is booted, TWRP will patch the stock ROM to prevent the stock ROM from replacing TWRP. If you don't follow this step, you will have to repeat the install.</p>
+<p class="code">{{ fastboot }} flash recovery twrp.img</p>
+<p class="code">{{ fastboot }} reboot</p>
+<p class="text">Note many devices will replace your custom recovery automatically during first boot. To prevent this, use <a href="http://www.google.com">Google</a> to find the proper key combo to enter recovery. After typing <span class="code">{{ fastboot }} reboot</span>, hold the key combo and boot to TWRP. Once TWRP is booted, TWRP will patch the stock ROM to prevent the stock ROM from replacing TWRP. If you don't follow this step, you will have to repeat the install.</p>
 </html>
diff --git a/_includes/flashimageinstall.html b/_includes/flashimageinstall.html
index f7752bd..f6c3651 100644
--- a/_includes/flashimageinstall.html
+++ b/_includes/flashimageinstall.html
@@ -3,6 +3,6 @@
 <a id='flash_image'></a>
 <hr />
 <p class="text">Download the latest image file (.img) from the download link above. Place it in the root of your /sdcard folder and rename it to twrp.img. Run the following commands via adb shell or a terminal emulator app:</p>
-<p class="text">su</p>
-<p class="text">flash_image recovery /sdcard/twrp.img</p>
-</html>
\ No newline at end of file
+<p class="code">su</p>
+<p class="code">flash_image recovery /sdcard/twrp.img</p>
+</html>