Difference between pages "FreeCA Certs" and "Centering & Formatting Text on Your Web Page"

From TheBestLinux.com
(Difference between pages)
Jump to navigation Jump to search
 
 
Line 1: Line 1:
'''Here is some info for free CA certificates:'''
+
This is how you can format text on your web page, making it centered, changing the font size and color, and other options. Here is an example of how I change font alignment, size and color on the fly, without having  to manage a separate CSS file:
<br />
 
 
 
[https://en.wikipedia.org/wiki/CAcert.org Certificate Authority Wiki]
 
<br /><br />
 
 
 
I LOVE & use Let's Encrypt, Google's free SSL certificate authority and server and it's certificate renewal utility Certbot! Here's an example of the command to use to renew your SSL certificate for use on an NginX webserver:
 
<br />
 
<pre style="colore:blue">
 
[root@wiki.linuxjamie.com:~]# certbot --nginx --redirect --agree-tos --no-eff-email -d wiki.linuxjamie.com -m jamie@linuxjamie.com
 
</pre>
 
<br /><br />
 
Here's an example crontab entry to automate your Let's Encrypt SSL certificate renewal on a regular basis so it never expires:
 
<br />
 
 
<pre style="color:blue">
 
<pre style="color:blue">
[root@www.thebestlinux.com:/usr/share/nginx/html]# crontab -l
+
<p style="text-align: center; font-size: 42px; fg-color: green;">
0 2 * * * certbot renew --quiet
+
Here is the text which will be now be centered with a font size of 42 pixels and green in color.
 
</pre>
 
</pre>
<br /><br />
+
 
 +
And here is the resulting line with the style modified with our example:
 +
<p style="color:red"; "text-align:center"; "font-size:42px;" >
 +
Here is the text which will be now be centered with a font size of 42 pixels and RED in color.
 +
</p>

Revision as of 05:07, 15 December 2022

This is how you can format text on your web page, making it centered, changing the font size and color, and other options. Here is an example of how I change font alignment, size and color on the fly, without having to manage a separate CSS file:

<p style="text-align: center; font-size: 42px; fg-color: green;">
Here is the text which will be now be centered with a font size of 42 pixels and green in color.

And here is the resulting line with the style modified with our example:

Here is the text which will be now be centered with a font size of 42 pixels and RED in color.