ref: 3a3e0f8dd3faed80b502516e992f9230e9e9cd2d
parent: 00ea80883d0fefb10dd0d6b3b7f31003f1a98b3f
author: mkf <mkf@cloud9p.org>
date: Mon Feb 19 03:36:20 EST 2024
webnotes.ms: 4th session, also don't use .2C
--- a/webnotes.ms
+++ b/webnotes.ms
@@ -1,8 +1,8 @@
-.2C
.TL
-notes on web
-.AU
-mkf
+Notes on web
+.LP
+These are notes taken from Behzad Bayat's
+youtube tutorials.
.NH
Intro
.LP
@@ -115,3 +115,23 @@
Installing editor
.LP
This section is intentionally left empty.
+.NH
+HTML tags and elements
+.LP
+There are two types of HTML tags,
+one is inline tags, which look like
+.CW <tag attr=value> ;
+The other type are container tags, which
+have two tags enclose (some) values:
+.CW <tag>value</tag> .
+as stated before, each document should have
+.CW <html> ,
+.CW <head>
+and
+.CW <body>
+tags.
+Body tag is what displayed by the browser in the main window,
+and head tag displays other page related information, such as
+document title (
+.CW <title>
+tag ).