Difference between revisions of "Basic HTML5 Page Layout"
Jump to navigation
Jump to search
Tag: visualeditor-switched |
|||
Line 1: | Line 1: | ||
− | Here | + | Here are the most commonly used meta tags, which should be used as best practice. There are hundreds of other options, but these are the ones to use on a production website. |
− | There are of | ||
<pre style="color:blue"> | <pre style="color:blue"> | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
<html> | <html> | ||
<head> | <head> | ||
− | <meta charset=" | + | <meta charset="UTF-8"> |
+ | <meta name="description" content="The Best Linux Wiki"> | ||
+ | <meta name="keywords" content="Linux Shell Free"> | ||
+ | <meta name="author" content="Jamie Rubinstein"> | ||
+ | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title> | <title> | ||
Web Page Title | Web Page Title |
Revision as of 03:29, 16 August 2021
Here are the most commonly used meta tags, which should be used as best practice. There are hundreds of other options, but these are the ones to use on a production website.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="description" content="The Best Linux Wiki"> <meta name="keywords" content="Linux Shell Free"> <meta name="author" content="Jamie Rubinstein"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Web Page Title </title> <body> . . . Web page content goes here... . . . </body> </html>