Markdown lightweight markup language

========= QUESTION --------- What is it - how do I use it?   ========= ANSWER ---------(CREDIT: http://www.ctrlshift.net/project/markdowneditor/) Markdown is a lightweight markup language based on the formatting conventions that people naturally use in email. As [John Gruber] writes on the [Markdown site] [1]: > The overriding design goal for Markdown's> formatting syntax is to make [...]

By |2013-02-20T13:44:49+00:00February 20th, 2013|Computers, Documentation, HTML, Internet/Web, Text Editors|Comments Off on Markdown lightweight markup language

How do I add a redirect to my web page?

========= QUESTION ——— How do I add code to my web page to redirect the browser to another page, web site, or subdirectory?   ========= ANSWER ——— Enter the code in the EXAMPLES section in the <HEADER> section </header> of your web page.   ========= EXAMPLES ——— HTML <meta http-equiv="REFRESH" content="0;url=http://www.anySiteHosting.com/Welcome/index.html"> PHP <?php // Permanent [...]

By |2011-05-30T06:13:23+00:00May 30th, 2011|Documentation, HTML, Internet/Web|Comments Off on How do I add a redirect to my web page?

How do you add anchor links on a web page?

========= QUESTION --------- How do you add anchor links on a web page?   ========= ANSWER --------- See EXAMPLES   ========= EXAMPLES --------- <a href="#namedSection">Click here to go to the named section of this page</a> <a title="namedSection" name="namedSection">This is the named section</a> --------- <a href="newpage.html#namedSection">Click here to go to the named section of a different page</a> [...]

By |2017-12-01T23:47:48+00:00May 15th, 2011|HTML, Internet/Web|Comments Off on How do you add anchor links on a web page?
Go to Top