Most of the coding I need to do is more complicated. When I access the templates or themes, I need to do a lot of re-arranging of coding and de-bugging. I often have to change fonts and sizes, as well as creating basic links and unordered lists.
An example of a basic link that I use every day is:
<a href="www.heart.webpage.com"> A Second Heart</a>
On the website, this coding will appear like this:
This can be customized to include email links by adding mailto: in the address.
At times, when customizing the navigation menu bar at the top of the page, depending on the template or theme used, I essentially create an un-ordered list. This will look like:
<div id="navmenu">
<ul>
<li> <a href="www.link1.com"> link one</a> </li>
<li> <a href="www.link2.com"> link two</a> </li>
<li> <a href="www.link3.com"> link three</a> </li>
<li> <a href="www.link4.com"> link four</a> </li>
</ul>
This, when generated in the header.php document in WordPress, will look like this:
Adding images to webpages is not something I do often, but at times I do create a soundtrack or a "fanmix" for certain characters and novels.
The simple coding for this is:
<img src= "image_name.jpg">
This will appear like this:

This can be easily turned into an image link, which I sometimes do to provide downloads to songs from certain soundtracks, and links to itunes. This allows users to simply click the image and be taken to another page. This appears as:
<a href="http://itunes.com/" target="_blank">
<img scr="image_name.jpg"/> </a>
Permalinking within a website is easily done through WordPress. The link generator does this on it's own. When a page is save it is automatically given a number in sequence. When linking one page to the next, the link name can be highlighted and the insert/create a link button can be selected.
The link title still needs to be entered into the box.
Links in WordPress look slightly different than the traditional links. To link to a page already within the website, first remove the highlighted "http://" in the Link URL box. The code you enter here will be
/?page_id=522
Once "insert" is selected, the link is created. This can be done directly in html by changing the dialogue box from visual to html. However, it is much easier to insert the link in the visual mode. The code is generated automatically.





