To continue with my post from yesterday, here are a few more advanced codes that can help you add some flair to your website. These codes were mainly generated from the free online HTML tutorial at W3 schools. These codes can be implemented into a program, such as Notepad and saved as a text file. You can then right click and open it with your Internet browser.
Insert a picture of graphic
<img src=”Your Picture.gif” alt=”Your Company”> or <img src=http://www.YourPicture.com alt=”Your Company”>
Apply a heading
<h1> to <h6> applies headings, with <h1> being the largest
Create a link that will open up in a new browser
<a href=“http://www.YourWebsite.com” target=“_blank”>Visit Your Company!</a>
Create a background color
<body bgcolor=“#000000”> or <body bgcolor=“black”>
Change a font style
<p>
<font size=“2” face=“Arial”>
Write a paragraph here.
</font>
</p>
Change spacing around my image
<img src=”YourImage.gif” hspace=10 vspace=10>
Highlight text
Can you see <span style=”background-color:yellow”>hi-lighted</span> text?
Be sure to remember that you will always need to close any tag that you implement with </>.