Difference between revisions of "Minimal HTML5 Web Page"

From TheBestLinux.com
Jump to navigation Jump to search
(Created page with "<!DOCTYPE html> <html> <head> <meta charset="utf-8" lang="EN"> <title> Web Page Title </title> <body> . . . Web page content goes here... . . . </body> </html>")
 
Line 1: Line 1:
 +
Here is the basic framework I use to create simple HTML5 web pages on the fly.
 +
There are of course thousands of options, but all modern web pages should include all of these elements as minimum.  I've use 3 dots(.) on blank lines to indicate possible lines below and above.
 +
<pre style="color:blue">
 
<!DOCTYPE html>
 
<!DOCTYPE html>
 
<html>
 
<html>
Line 16: Line 19:
 
</body>
 
</body>
 
</html>
 
</html>
 +
</pre>

Revision as of 03:24, 16 August 2021

Here is the basic framework I use to create simple HTML5 web pages on the fly. There are of course thousands of options, but all modern web pages should include all of these elements as minimum. I've use 3 dots(.) on blank lines to indicate possible lines below and above.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" lang="EN">
<title>
Web Page Title
</title>
<body>
.
.
.
Web page content goes here...
.
.
.
</body>
</html>