Difference between revisions of "Check it out here!"
Jump to navigation
Jump to search
(Created page with "= '''Website Programming - HTML, CSS & Javascript''' = == '''HTML''' == Basic HTML5 Page Layout How to Center an Image on Your Page == '''CSS''' == == '''Javascript'...") |
|||
| (4 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
= '''Website Programming - HTML, CSS & Javascript''' = | = '''Website Programming - HTML, CSS & Javascript''' = | ||
== '''HTML''' == | == '''HTML''' == | ||
| − | [[Basic HTML5 Page Layout]] | + | * [[Basic HTML5 Page Layout]] |
| − | [[How to Center an Image on Your Page]] | + | * [[Minimal HTML5 Web Page]] |
| + | * [[How to Center an Image on Your Page]] | ||
| + | * [[Centering & Formatting Text on Your Web Page]] | ||
== '''CSS''' == | == '''CSS''' == | ||
== '''Javascript''' == | == '''Javascript''' == | ||
| + | |||
| + | = '''Apache Web Server''' = | ||
| + | == '''Password Protected Web Pages''' == | ||
| + | * Password Generation Options | ||
| + | |||
| + | Using crypt encryption: | ||
| + | htpasswd -bd .htpasswd testuser Pass123 | ||
| + | |||
| + | Using MD5 encryption: | ||
| + | htpasswd -bm .htpasswd testuser Pass123 | ||
| + | |||
| + | Using SHA encryption: | ||
| + | htpasswd -bs .htpasswd testuser Pass123 | ||
Latest revision as of 18:24, 23 June 2023
Website Programming - HTML, CSS & Javascript
HTML
- Basic HTML5 Page Layout
- Minimal HTML5 Web Page
- How to Center an Image on Your Page
- Centering & Formatting Text on Your Web Page
CSS
Javascript
Apache Web Server
Password Protected Web Pages
- Password Generation Options
Using crypt encryption: htpasswd -bd .htpasswd testuser Pass123
Using MD5 encryption: htpasswd -bm .htpasswd testuser Pass123
Using SHA encryption: htpasswd -bs .htpasswd testuser Pass123