diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-15 18:37:16 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-15 18:37:16 (EST) |
commit | b7f2b8ed1053131ecf946e154cc2e85735ba976e (patch) | |
tree | 4b4c426f7f54d4bb4c6594c32caed3ce4107f51c /site/gpg/index.php | |
parent | dc90401e4c6ebec17306e41d3de9182c9f249bff (diff) | |
download | libreboot.org-b7f2b8ed1053131ecf946e154cc2e85735ba976e.zip libreboot.org-b7f2b8ed1053131ecf946e154cc2e85735ba976e.tar.gz libreboot.org-b7f2b8ed1053131ecf946e154cc2e85735ba976e.tar.bz2 |
Don't use html U, B or I tags. Use HTML5 tags strong and em
Diffstat (limited to 'site/gpg/index.php')
-rw-r--r-- | site/gpg/index.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/site/gpg/index.php b/site/gpg/index.php index cba7377..72695f4 100644 --- a/site/gpg/index.php +++ b/site/gpg/index.php @@ -41,21 +41,21 @@ </p> <p> <?php echo gettext("Download the key:"); ?><br/> - $ <b>gpg --recv-keys <?php echo $lbProjectGpgKeyID; ?></b> + $ <strong>gpg --recv-keys <?php echo $lbProjectGpgKeyID; ?></strong> </p> <p> <?php echo gettext("Download the SHA512 manifest and its corresponding GPG signature, for the release that you are using."); ?> <?php echo gettext("Put the src, util and docs archives in the same directory as the SHA512 manifest file."); ?> - <?php echo gettext("Put your ROM image archives under <i>rom/</i> in that directory, and crossgcc tarballs under <i>crossgcc/</i>."); ?> + <?php echo gettext("Put your ROM image archives under <em>rom/</em> in that directory, and crossgcc tarballs under <em>crossgcc/</em>."); ?> </p> <p> <?php echo gettext("After you've done this, verify the SHA512 checksums:"); ?><br/> - $ <b>sha512sum -c sha512sum.txt</b> + $ <strong>sha512sum -c sha512sum.txt</strong> </p> <p> <?php echo gettext("You can verify the downloaded SHA512 manifest as follows:"); ?><br/> - $ <b>gpg --verify sha512sum.txt.sig</b> + $ <strong>gpg --verify sha512sum.txt.sig</strong> </p> <p> <a href="../"><?php echo gettext("Back to home page"); ?></a> @@ -72,4 +72,4 @@ <?php $strHtml = ob_get_clean(); echo miniHtml($strHtml); -?>
\ No newline at end of file +?> |