EzPortal - Portal Software for Forums

EzPortal - Made to Fit Your SMF Forum - Glad You Found Us!
+- +-

UserBox

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Recent Posts

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Re: Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 02:09:24 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:55:53 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 01:47:42 pm

Re: Theme Select Box question? by Shades
March 09, 2023, 01:34:07 pm

Re: Theme Select Box question? by EzPortal
March 09, 2023, 12:20:17 pm

+- HTML Menu


Sample HTML Block Usage - You May Custom Code it, as needed!

Recent Topics ezBlock

New built in translations for six langauges! by EzPortal
March 26, 2024, 11:15:32 pm

Smiley missing in shoutbox 2.1.4 by hustreamload
July 26, 2023, 08:14:02 am

Theme Select Box question? by Shades
March 15, 2023, 06:49:49 pm

Where is the facebook button color? by EzPortal
February 28, 2023, 06:45:09 pm

Display on Mobile - SMF 2.1.3 and EZ 5.5.2 by BugginIn
December 29, 2022, 04:07:13 pm

Blocks Help by Riggs1973
November 20, 2022, 12:59:30 pm

Surface ol lite theme release Free! by Steffen K.
November 18, 2022, 03:57:24 am

Undefined index: href by EzPortal
October 04, 2022, 08:49:59 pm

SMF-ezportal_column_5.cache): failed to open stream: No such file or directory by EzPortal
June 04, 2022, 11:40:13 am

Arcade block error: failed to open stream: No such file or directory by Shades
May 20, 2022, 02:47:13 pm

Author Topic: Basic HTML Tag/Usage  (Read 8224 times)

0 Members and 1 Guest are viewing this topic.

Offline Maxx

  • VN Vet E4
  • Hero Member
  • *****
  • Posts: 560
  • Karma: 8
  • Gender: Male
  • Web Designer
    • SurfaceThemes - Web Design Ideas Classic Rock
Basic HTML Tag/Usage
« on: July 27, 2014, 09:15:26 am »
This   is only the basics of the HTML start tags.   These pages  are a combination of reference and tutorial, and include the options for each tag.

Page Structure & Description Tags         

    <HTML>      The start and end of your document
    <BODY>      Setting overall page characteristics
    <HEAD>      Things generally not for your readers
    <TITLE>      Titling your page
    <META>      Instructions for search engines, etc.

Text Appearance Tags     

    <B>               Making bold text
    <EM>             Emphasizing your words
    <FONT>         Setting your fonts
    <H1>...<H6> Creating headings
    <I>                Creating italics
    <STRONG>     Making your words strong
    <SUB>           Subscripting
    <SUP>           Superscripting
    <U>               Underlining

Breaking Things Up     

    <CENTER>     Centering your text and images     
    <BR>              Line breaks
    <P>                Paragraphs
    <BLOCKQUOTE>     Indenting your margin

Images & Other Pretty Things     

    <IMG>       Displaying pictures on your pages
    <HR>         Creating horizontal rules (lines)

Making Lists   
   
    <UL> & <LI> Creating bulleted lists
    <OL> & <LI> Creating numbered lists
    <DL>, <DT> & <DD> Lists with no bullets- or use your own      graphics

Linking Things Together     

    <A HREF>       Creating link

Setting Your Tables     

    <TABLE>         Your first table ingredient
    <TR>               Create Table row
    <TD>               The table division used to create a cell

 
If you find this Portal System useful, please consider supporting us with a small Donation!
Check out the How to Section!!
Please remember to keep your back ups, up to date, before you try anything new!

Offline Maxx

  • VN Vet E4
  • Hero Member
  • *****
  • Posts: 560
  • Karma: 8
  • Gender: Male
  • Web Designer
    • SurfaceThemes - Web Design Ideas Classic Rock
Re: Basic HTML Tag/Usage
« Reply #1 on: July 27, 2014, 09:18:58 am »
Now let us keep in mind that for every tag, there is a "<>" bracket tag for the begin and a "</>" bracket tag  for the end of that or each tag placed on your html statement, for example:

"<html>" the begin tag for the page and the "</html>" for the ending of you HTML page!

Same goes for your "<head>" and "</head>"
then comes the "<body>" at the beginning of your page body content and then "</body>" at the end of your page body content!

So the basic code will look like this

"<html>"
"<head>"

All your meta information, Title, Description, css and so on goes in here!

"</head>"
"<body>"

Everything here will be viewed on the web...Your content!

"</body>"

"</html>"

---------------------------------

Code: [Select]
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 2</title>
</head>

<body>

</body>

</html>
If you find this Portal System useful, please consider supporting us with a small Donation!
Check out the How to Section!!
Please remember to keep your back ups, up to date, before you try anything new!

Offline Maxx

  • VN Vet E4
  • Hero Member
  • *****
  • Posts: 560
  • Karma: 8
  • Gender: Male
  • Web Designer
    • SurfaceThemes - Web Design Ideas Classic Rock
Re: Basic HTML Tag/Usage
« Reply #2 on: July 27, 2014, 09:23:28 am »
Basic HTML page layout with some meta tags

Code: [Select]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title></title>
  <meta http-equiv="generator" content="" />
  <meta name="created" content="Thu, 22 Apr 2010 19:47:12 GMT" />
  <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  <meta name="description" content="" />
  <meta name="keywords" content="" />
</head>
<body>
<! --- Enter your page content here! ----->
</body>
</html>

Notice between the body start and body end tags, is where you place your page content, that will be viewed in Browser window, by the public, the rest are all hidden form plain view

regards,
Maxx
If you find this Portal System useful, please consider supporting us with a small Donation!
Check out the How to Section!!
Please remember to keep your back ups, up to date, before you try anything new!

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
8262 Views
Last post May 08, 2010, 03:05:04 pm
by Maxx
10 Replies
10257 Views
Last post June 15, 2010, 08:21:17 am
by Maxx
0 Replies
6096 Views
Last post April 22, 2011, 07:39:20 pm
by will
5 Replies
9043 Views
Last post May 27, 2012, 04:14:42 pm
by hrroach
0 Replies
10787 Views
Last post October 07, 2012, 10:09:32 pm
by Candidosa2

+-SMF Gallery

Quick Menu


Powered by EzPortal