Web Development • Print Design • Marketing • Business Identity • Data Management                    (480) 970-6999  |  Email Us   

Client Login

Username:

Password:


  Forgot Password?



Just wanted you to know how much I appreciate you paying special attention to us and our needs during this transition period.

-Amanda McGennis
-AGC AZ Chapter

Basic HTML 101

Example: Bold Text
Code: <B>azconcrete.org</B>
Results: azconcrete.org

Example: Underlined Text
Code: <U>azconcrete.org</U>
Results: azconcrete.org

Example: Italic Text
Code: <I>azconcrete.org</I>
Results: azconcrete.org

Example: Combination of all Three
Code: <B><I><U>azconcrete.org</U></I></B>
Results: azconcrete.org

Example: Text Link
Code: <A href="http://www.azconcrete.org">azconcrete.org</A>
Results: azconcrete.org

Example: Line
Code: <HR width=275 align=left>
Results:

Example: Email Link
Code:
<A href="mailto:hi@azconcrete.org">hi@azconcrete.org</A>
Results: hi@azconcrete.org

Example: Bullets
Code:
<UL><LI>Circles</LI><LI>Squares</LI></UL>
Results:

  • Circles
  • Squares


Example: Numbered
Code:
<OL><LI>Circles</LI><LI>Squares</LI></OL>
Results:
  1. Circles
  2. Squares


Example: More than one space
Code: Hello &nbsp;There
Results: Hello  There